]> git.deb.at Git - pkg/abook.git/commitdiff
minor macro tweaks
authorJaakko Heinonen <jheinonen@users.sourceforge.net>
Fri, 7 Nov 2003 17:24:52 +0000 (17:24 +0000)
committerJaakko Heinonen <jheinonen@users.sourceforge.net>
Fri, 7 Nov 2003 17:24:52 +0000 (17:24 +0000)
abook.h
configure

diff --git a/abook.h b/abook.h
index f6c756b70428737b6caa17a2fe1dd1e462a037d6..20bad884ebc49c8b8969037475abec016cb9921f 100644 (file)
--- a/abook.h
+++ b/abook.h
@@ -38,10 +38,10 @@ int         strncasecmp (const char *, const char *, size_t);
 #define hide_cursor()  curs_set(0)
 #define show_cursor()  curs_set(1)
 
-#define safe_atoi(X)    (X == NULL) ? 0 : atoi(X)
+#define safe_atoi(X)    ((X == NULL) ? 0 : atoi(X))
 #define my_free(X)     do {free(X); X=NULL;} while(0)
-#define safe_str(X)    X == NULL ? "" : X
-#define safe_strdup(X) (X == NULL) ? NULL : strdup(X)
+#define safe_str(X)    ((X == NULL) ? "" : X)
+#define safe_strdup(X) ((X == NULL) ? NULL : strdup(X))
 
 #ifndef min
 #       define min(x,y) (((x)<(y)) ? (x):(y))
index 8619287c85eb11fb3ddeaba7e6046e377649dfbf..5bd1f3969a48d07f75a2e9fdd8716fbf74849499 100755 (executable)
--- a/configure
+++ b/configure
@@ -1527,7 +1527,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE=abook
- VERSION=0.5.1
+ VERSION=0.5.1rc1
 
 
 cat >>confdefs.h <<_ACEOF