diff options
author | Sascha Schumann <sas@php.net> | 2003-08-28 17:34:33 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2003-08-28 17:34:33 +0000 |
commit | 237da469d7c25248fc197a84064d5908928761c7 (patch) | |
tree | 467e658b174a0da7b0159b1d7c80be5eb1e4f110 /ext/session | |
parent | 744c68e44719f492c97263c1916568696e643954 (diff) | |
download | php-git-237da469d7c25248fc197a84064d5908928761c7.tar.gz |
format string fix
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index 277a84e88b..b156567259 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -732,7 +732,7 @@ static int migrate_global(HashTable *ht, HashPosition *pos TSRMLS_DC) break; case HASH_KEY_IS_LONG: php_error_docref(NULL TSRMLS_CC, E_NOTICE, "The session bug compatibility code will not " - "try to locate the global variable $%d due to its " + "try to locate the global variable $%lu due to its " "numeric nature.", num_key); break; } |