ossp-pkg/str/str_format.c 1.31 -> 1.32
--- str_format.c 2005/10/03 07:34:43 1.31
+++ str_format.c 2008/06/06 12:29:20 1.32
@@ -110,7 +110,8 @@
#endif
/* a few handy defines */
-#define S_NULL "(NULL)"
+static char str_null[] = "(NULL)";
+#define S_NULL str_null
#define S_NULL_LEN 6
#define FLOAT_DIGITS 6
#define EXPONENT_LENGTH 10
|
|