diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-02-17 23:06:01 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2015-02-17 23:06:01 -0800 |
commit | 86c2e6f13b5c77b193762ff7e0628d7957e6bf0b (patch) | |
tree | b73968517ac84e58e3dfb45e6cd245d766189caf | |
parent | 5ea2adab785079f7b87a459654696d2fff248a52 (diff) |
Delete unused NULLSTR macro
Spotted by clang:
xdpyinfo.c:145:9: warning: macro is not used [-Wunused-macros]
^
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xdpyinfo.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -141,9 +141,6 @@ in this Software without prior written authorization from The Open Group. #include <stdio.h> #include <stdlib.h> -/* Turn a NULL pointer string into an empty string */ -#define NULLSTR(x) (((x)!=NULL)?(x):("")) - static char *ProgramName; static Bool queryExtensions = False; |