aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_private.c
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-06-12 11:26:51 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-06-12 11:26:51 +0100
commitea511d357e85dfe5dbcd71fe31428c06991f0754 (patch)
tree8ef0e551bfcb5318b979dd07ca14cd1b55a9ce0a /tools/libxc/xc_private.c
parentb2023adb2e06555b6ab32541fb1d87824d2c216f (diff)
downloadxen-ea511d357e85dfe5dbcd71fe31428c06991f0754.tar.gz
xen-ea511d357e85dfe5dbcd71fe31428c06991f0754.tar.bz2
xen-ea511d357e85dfe5dbcd71fe31428c06991f0754.zip
tools: Clean up usage of const type qualifier.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'tools/libxc/xc_private.c')
-rw-r--r--tools/libxc/xc_private.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c
index 9ac035f8af..cfb129ef9e 100644
--- a/tools/libxc/xc_private.c
+++ b/tools/libxc/xc_private.c
@@ -17,7 +17,7 @@ static xc_error_handler error_handler = xc_default_error_handler;
static xc_error_handler error_handler = NULL;
#endif
-void xc_default_error_handler(const xc_error const *err)
+void xc_default_error_handler(const xc_error *err)
{
const char *desc = xc_error_code_to_desc(err->code);
fprintf(stderr, "ERROR %s: %s\n", desc, err->message);