dtudcexch/dtudcfonted: Resolve 78 compiler warnings.
This commit is contained in:
@@ -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 {\
|
||||
|
||||
@@ -188,7 +188,7 @@
|
||||
/*
|
||||
* help message
|
||||
*/
|
||||
#define COMM_HELP_MSG{ \
|
||||
#define COMM_HELP_MSG { \
|
||||
USAGE(" [-codeset number] [-help]\n"); \
|
||||
USAGE("\n"); \
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user