diff options
author | Richard Jones <rjones@redhat.com> | 2009-06-10 11:49:42 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-06-10 14:16:47 +0100 |
commit | 56bef498f46ac3dd580f4bde3c8f3ed2fe688826 (patch) | |
tree | 73bb0d8c5df5ec8c5af905be3283b6beaa2994bc /daemon/debug.c | |
parent | 2df2f2854ed2d1f9857ef3c5aaca29810cf3c506 (diff) | |
download | libguestfs-56bef498f46ac3dd580f4bde3c8f3ed2fe688826.tar.gz libguestfs-56bef498f46ac3dd580f4bde3c8f3ed2fe688826.tar.xz libguestfs-56bef498f46ac3dd580f4bde3c8f3ed2fe688826.zip |
In the daemon, change all const char * parameters to char *.
Diffstat (limited to 'daemon/debug.c')
-rw-r--r-- | daemon/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/debug.c b/daemon/debug.c index 6e9e3730..ce760e6f 100644 --- a/daemon/debug.c +++ b/daemon/debug.c @@ -61,7 +61,7 @@ static struct cmd cmds[] = { #endif char * -do_debug (const char *subcmd, char *const *const argv) +do_debug (char *subcmd, char **argv) { #if ENABLE_DEBUG_COMMAND int argc, i; |