1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Fixed a non-critical bug, but which affected how indent program indents

the code.
This commit is contained in:
jani@rhols221.adsl.netsonic.fi
2004-04-05 16:28:16 +03:00
parent 2e22d54429
commit 77411610ea

View File

@@ -425,8 +425,9 @@ int main(int argc,char *argv[])
} }
#endif #endif
sprintf(buff, "%s", sprintf(buff, "%s",
#ifndef NOT_YET
"Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.\n"); "Type 'help;' or '\\h' for help. Type '\\c' to clear the buffer.\n");
#ifdef NOT_YET #else
"Type 'help [[%]function name[%]]' to get help on usage of function.\n"); "Type 'help [[%]function name[%]]' to get help on usage of function.\n");
#endif #endif
put_info(buff,INFO_INFO); put_info(buff,INFO_INFO);