diff options
author | jbj <devnull@localhost> | 1999-10-20 18:38:37 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-10-20 18:38:37 +0000 |
commit | 574cad11f200498c52daf162d71b22c928926534 (patch) | |
tree | bf79d9f846b3cb947e46c2eab0b21a051b1f5f51 /tools | |
parent | 22947b332ed67b529c33e60ed0309e55ec7de678 (diff) | |
download | rpm-574cad11f200498c52daf162d71b22c928926534.tar.gz rpm-574cad11f200498c52daf162d71b22c928926534.tar.bz2 rpm-574cad11f200498c52daf162d71b22c928926534.zip |
Tyo: RPMTAG_COMPFILENAMES is ...COMPFILELIST.
Remove compiler warnings.
CVS patchset: 3386
CVS date: 1999/10/20 18:38:37
Diffstat (limited to 'tools')
-rw-r--r-- | tools/javadeps.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/javadeps.c b/tools/javadeps.c index a858c7528..0abfc4c5b 100644 --- a/tools/javadeps.c +++ b/tools/javadeps.c @@ -212,7 +212,7 @@ usage (void) "assumed to be zero. \n\n" ""); printf("EXAMPLES (Java Keywords): \n\n" - "\t public static final String REVISION = \"$Revision: 2.4 $\";\n" + "\t public static final String REVISION = \"$Revision: 2.5 $\";\n" "\t public static final String EPOCH = \"4\";\n" "\t public static final String REQUIRES = \"RPM_Requires: " "java(gnu.regexp.RE) java(com.ibm.site.util.Options)>=1.5\";\n" @@ -418,6 +418,7 @@ int findJavaMagic (FILE *fileHandle) #undef mod4 +static int my_strcmp (const void *a, const void *b) { char **a1; char **b1; int ret; @@ -489,7 +490,7 @@ print_table_add(char *str) { /* Given a list separated by whitespace, put each element in the print table with an added "\n" */ -void +static void print_list(char *in_string) { char *WhiteSpace_Set = "\t\v\n\r\f "; char *newEnd, *out_string; |