Fix warnings (Ingmar Alting)

This commit is contained in:
Ben Gras 2006-11-10 18:19:38 +00:00
parent f8a5db5ab0
commit 03be184bd6
2 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ long min, max; /* minimum and maximum values for the parameter */
char value[EP_BUF_SIZE]; char value[EP_BUF_SIZE];
char PUNCT[] = ":,;."; char PUNCT[] = ":,;.";
long newpar; long newpar;
int s, i, radix, r, keylen; int s, i, radix, r;
if ((s=env_get_param(env, value, sizeof(value))) != 0) { if ((s=env_get_param(env, value, sizeof(value))) != 0) {
if (s == ESRCH) return(EP_UNSET); /* only error allowed */ if (s == ESRCH) return(EP_UNSET); /* only error allowed */
@ -85,6 +85,7 @@ long min, max; /* minimum and maximum values for the parameter */
} }
badenv: badenv:
env_panic(env); env_panic(env);
return -1;
} }

View file

@ -14,8 +14,7 @@ char *prefix; /* prefix to test for */
*/ */
char value[EP_BUF_SIZE]; char value[EP_BUF_SIZE];
char punct[] = ":,;."; char punct[] = ":,;.";
int i, s, keylen; int s;
char *val;
size_t n; size_t n;
if ((s = env_get_param(env, value, sizeof(value))) != 0) { if ((s = env_get_param(env, value, sizeof(value))) != 0) {