Skip to content

Commit

Permalink
- Fix warnings
Browse files Browse the repository at this point in the history
SVN Rev: 1844
  • Loading branch information
helly25 committed Feb 2, 2006
1 parent 32860d5 commit 9a60d3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xdebug.c
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@ static void print_stack(int html, const char *error_type_str, char *buffer, cons
} else {
php_printf("%10.4f ", i->time - XG(start_time));
#if MEMORY_LIMIT
php_printf("%10u ", i->memory);
php_printf("%10ld ", i->memory);
#endif
php_printf("%3d. %s(", i->level, tmp_name);
}
Expand Down Expand Up @@ -2143,7 +2143,7 @@ PHP_FUNCTION(xdebug_debug_zval_stdout)
{
zval ***args;
int argc;
int i, len;
int i;
char *val;
zval *debugzval;

Expand Down

0 comments on commit 9a60d3e

Please sign in to comment.