diff options
author | James Booth <boothj5@gmail.com> | 2014-09-07 22:34:54 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-09-07 22:34:54 +0100 |
commit | b69c9aad8722c0fe1e115b15300743a36fc09305 (patch) | |
tree | fee3df7c1ea057f4c1c5677d3dd921efbe83a563 /src | |
parent | 8f08c7a21ef506fdb97816d2be96a2a5e17e6527 (diff) | |
download | profani-tty-b69c9aad8722c0fe1e115b15300743a36fc09305.tar.gz |
Fixed spelling mistake in ping errors
Diffstat (limited to 'src')
-rw-r--r-- | src/server_events.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server_events.c b/src/server_events.c index c708a8de..408e4e3e 100644 --- a/src/server_events.c +++ b/src/server_events.c @@ -596,6 +596,6 @@ handle_ping_error_result(const char * const from, const char * const error) if (error == NULL) { cons_show_error("Error returned from pinging %s.", from); } else { - cons_show_error("Error returned form pinging %s: %s.", from, error); + cons_show_error("Error returned from pinging %s: %s.", from, error); } } |