Remove assignment to variables not in use.
[yaz-moved-to-github.git] / src / xmalloc.c
index 7042079..3c28abe 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2009 Index Data
+ * Copyright (C) 1995-2011 Index Data
  * See the file LICENSE for details.
  */
 /**
@@ -348,7 +348,7 @@ char *xstrndup_f(const char *s, size_t n, const char *file, int line)
     if (l < n)
         return xstrdup_f(s, file, line);
     {
-        char *a = xmalloc_f(n+1, file, line);
+        char *a = (char*) xmalloc_f(n+1, file, line);
         memcpy(a, s, n);
         a[n] = '\0';
         return a;