dtudcexch/dtudcfonted: Resolve 78 compiler warnings.

This commit is contained in:
Peter Howkins
2012-09-18 12:00:05 +01:00
parent e2432556b8
commit 5e14a88e2c
12 changed files with 69 additions and 66 deletions

View File

@@ -181,7 +181,7 @@ extern char *bdftopcf;
#define SNFFONTC_ERROR -26
#define SCAN_TO_NONSP(p) {\
while (*(p) != NULL) {\
while (*(p) != 0) {\
if ((*(p) == ' ') || (*(p) == TAB_CD) || (*(p) == 0xa1)) {\
(p)++;\
} else {\
@@ -191,7 +191,7 @@ extern char *bdftopcf;
}
#define SCAN_TO_SP(p) {\
while (*(p) != NULL) {\
while (*(p) != 0) {\
if ((*(p) == ' ') || (*(p) == TAB_CD) || (*(p) == 0xa1)) {\
break;\
} else {\

View File

@@ -188,7 +188,7 @@
/*
* help message
*/
#define COMM_HELP_MSG{ \
#define COMM_HELP_MSG { \
USAGE(" [-codeset number] [-help]\n"); \
USAGE("\n"); \
}