summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbehdad <behdad>2007-04-05 16:14:14 +0000
committerbehdad <behdad>2007-04-05 16:14:14 +0000
commita04ddf676dec48112e077c8c3f727a313433c09f (patch)
tree5d0bd73aaba598317bb5a5b401e8bd85cfa35099
parent28dc6041e9f0074c68ce23a67a3b5f0ff3717241 (diff)
downloadfribidi-a04ddf676dec48112e077c8c3f727a313433c09f.tar.gz
Make sure we err if stringize is not available.
-rw-r--r--lib/common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/common.h b/lib/common.h
index 9802348..3cd6b51 100644
--- a/lib/common.h
+++ b/lib/common.h
@@ -1,10 +1,10 @@
/* FriBidi
* common.h - common include for library sources
*
- * $Id: common.h,v 1.18 2007-04-05 16:13:24 behdad Exp $
+ * $Id: common.h,v 1.19 2007-04-05 16:14:14 behdad Exp $
* $Author: behdad $
- * $Date: 2007-04-05 16:13:24 $
- * $Revision: 1.18 $
+ * $Date: 2007-04-05 16:14:14 $
+ * $Revision: 1.19 $
* $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/lib/common.h,v $
*
* Author:
@@ -168,7 +168,7 @@
#if HAVE_STRINGIZE+0
# define STRINGIZE(symbol) #symbol
#else /* !HAVE_STRINGIZE */
-# define STRINGIZE(symbol) "(no stringize operator available)"
+# define STRINGIZE(symbol) (no stringize operator available)
#endif /* !HAVE_STRINGIZE */
/* As per recommendation of GNU Coding Standards. */