|
From: Erik K. <ek...@us...> - 2003-02-19 06:15:24
|
Build Version : T1.5.0.2522 Firebird 1.5 Beta 2
(writeBuildNum.sh,v 1.2507 2003/02/19 06:15:22 eku Exp $ )
Update of /cvsroot/firebird/firebird2/src/qli
In directory sc8-pr-cvs1:/tmp/cvs-serv16828a/src/qli
Modified Files:
mov.cpp
Log Message:
Small correction (GCC doesn't complain). Thanks to Claudio.
Index: mov.cpp
===================================================================
RCS file: /cvsroot/firebird/firebird2/src/qli/mov.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -b -U3 -r1.14 -r1.15
--- mov.cpp 18 Feb 2003 10:05:05 -0000 1.14
+++ mov.cpp 19 Feb 2003 06:15:21 -0000 1.15
@@ -78,7 +78,7 @@
} *DTYPES;
static struct dtypes_t dtypes_table[] = {
- { dtype_null, "NULL", },
+ { dtype_null, "NULL" },
{ dtype_text, "character string" },
{ dtype_cstring, "character string" },
{ dtype_varying, "varying string" },
|