dont use an unsigned buffer since it doesnt matter and all the str* funcs expect a signed buffer

SVN revision: 22147
This commit is contained in:
Mike Frysinger 2006-04-15 20:02:22 +00:00
parent 48180d5fb0
commit 933cd9caf2
1 changed files with 3 additions and 3 deletions

View File

@ -97,9 +97,9 @@ set_pants_off(void *data)
static void
log_pants(void *data)
{
time_t now;
int len;
unsigned char *s;
time_t now;
int len;
char *s;
s=(pants_on)?PANTS_ON_STR:PANTS_OFF_STR;