Fix typo bufer -> buffer.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@395 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2013-10-16 11:58:14 +00:00
parent 751c53678d
commit a5bfc81b04

View File

@@ -4314,7 +4314,7 @@ void command_completion(char unused, char *not_used)
if (com && *com && my_strnicmp(com, dll->name, strlen(com))) if (com && *com && my_strnicmp(com, dll->name, strlen(com)))
continue; continue;
strlcat(buffer, dll->name, sizeof buffer); strlcat(buffer, dll->name, sizeof buffer);
strlcat(buffer, space, sizeof bufer); strlcat(buffer, space, sizeof buffer);
if (++c == 4) if (++c == 4)
{ {
put_it("%s", convert_output_format("$G $[15]0 $[15]1 $[15]2 $[15]3", "%s", buffer)); put_it("%s", convert_output_format("$G $[15]0 $[15]1 $[15]2 $[15]3", "%s", buffer));