Remove unused local variables.

This commit is contained in:
Sebastian Bergmann 2002-06-14 05:42:08 +00:00
parent 3ad50e1279
commit 596859eb44
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ PHP_FUNCTION(time)
void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm)
{
pval **arguments[7];
struct tm *ta, tmbuf, *t1, *t2;
struct tm *ta, tmbuf;
time_t t, seconds;
int i, gmadjust, arg_count = ZEND_NUM_ARGS();
int is_dst = -1, val, chgsecs = 0;

View File

@ -589,7 +589,7 @@ int PostHeader(char *RPath, char *Subject, char *mailTo, char *xheaders, char *m
time_t tNow = time(NULL);
struct tm *tm = localtime(&tNow);
int zoneh = abs(_timezone);
int zonem, res, len;
int zonem, res;
char *header_buffer;
char *headers_lc = NULL;
size_t i;