diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-10-28 13:55:56 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-10-28 17:25:46 +0100 |
commit | fd8a70b1ee8889234be5e9dded768852f26c9c5e (patch) | |
tree | bca8dd3c1f84ca5f327bcb4b57cdb4bb4c0b08e0 | |
parent | 76bd799eb791e29e590ba4d89071ddd9374daefd (diff) | |
download | php-git-fd8a70b1ee8889234be5e9dded768852f26c9c5e.tar.gz |
Typo (notfoundc => notfound)
-rw-r--r-- | sapi/phpdbg/phpdbg_prompt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c index 262b265a2e..733d3cbe48 100644 --- a/sapi/phpdbg/phpdbg_prompt.c +++ b/sapi/phpdbg/phpdbg_prompt.c @@ -1132,7 +1132,7 @@ PHPDBG_COMMAND(register) /* {{{ */ phpdbg_notice("register", "function=\"%s\"", "Registered %s", lcname); } else { - phpdbg_error("register", "type=\"notfoundc\" function=\"%s\"", "The requested function (%s) could not be found", param->str); + phpdbg_error("register", "type=\"notfound\" function=\"%s\"", "The requested function (%s) could not be found", param->str); } } else { phpdbg_error("register", "type=\"inuse\" function=\"%s\"", "The requested name (%s) is already in use", lcname); |