Remove const qualifiers

This commit is contained in:
James Booth
2016-07-25 01:54:16 +01:00
parent c39550cd1c
commit 1250d1df42
2 changed files with 8 additions and 8 deletions

View File

@@ -30,10 +30,10 @@ cmd_pid(char **args)
void
prof_init(const char * const version, const char * const status, const char *const account_name, const char *const fulljid)
{
const char *synopsis[] = { "/pid", NULL };
const char *description = "Show process ID and parent Process ID in the console window.";
const char *args[][2] = { { NULL, NULL } };
const char *examples[] = { NULL };
char *synopsis[] = { "/pid", NULL };
char *description = "Show process ID and parent Process ID in the console window.";
char *args[][2] = { { NULL, NULL } };
char *examples[] = { NULL };
prof_register_command("/pid", 0, 0, synopsis, description, args, examples, cmd_pid);
}