summaryrefslogtreecommitdiffstats
path: root/daemon/cmp.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-06-10 11:49:42 +0100
committerRichard Jones <rjones@redhat.com>2009-06-10 11:49:42 +0100
commit887290e949d54c6ac4c9b787231e588f84f2367c (patch)
treeb04356bafb16798442efa285e4cbecf2b3acb6eb /daemon/cmp.c
parent2df2f2854ed2d1f9857ef3c5aaca29810cf3c506 (diff)
downloadlibguestfs-887290e949d54c6ac4c9b787231e588f84f2367c.tar.gz
libguestfs-887290e949d54c6ac4c9b787231e588f84f2367c.tar.xz
libguestfs-887290e949d54c6ac4c9b787231e588f84f2367c.zip
In the daemon, change all const char * parameters to char *.
Diffstat (limited to 'daemon/cmp.c')
-rw-r--r--daemon/cmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/cmp.c b/daemon/cmp.c
index 7f92ef0b..04feba6d 100644
--- a/daemon/cmp.c
+++ b/daemon/cmp.c
@@ -28,7 +28,7 @@
#include "actions.h"
int
-do_equal (const char *file1, const char *file2)
+do_equal (char *file1, char *file2)
{
char *file1buf, *file2buf;
int file1len, file2len;