Avoid pointer-sign clash in yaz_marc_decode_buf() call.
authorMike Taylor <mike@indexdata.com>
Mon, 12 Jun 2006 16:12:58 +0000 (16:12 +0000)
committerMike Taylor <mike@indexdata.com>
Mon, 12 Jun 2006 16:12:58 +0000 (16:12 +0000)
util/marcdump.c

index d4f59c1..f5087e4 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (C) 1995-2006, Index Data ApS
  * See the file LICENSE for details.
  *
  * Copyright (C) 1995-2006, Index Data ApS
  * See the file LICENSE for details.
  *
- * $Id: marcdump.c,v 1.38 2006-06-07 10:51:14 adam Exp $
+ * $Id: marcdump.c,v 1.39 2006-06-12 16:12:58 mike Exp $
  */
 
 #define _FILE_OFFSET_BITS 64
  */
 
 #define _FILE_OFFSET_BITS 64
@@ -204,7 +204,9 @@ static void dump(const char *fname, const char *from, const char *to,
                         fclose(sf);
                     }
                 }
                         fclose(sf);
                     }
                 }
-                r = yaz_marc_decode_buf (mt, buf, -1, &result, &rlen);
+                { int rlentmp = (int) rlen;
+                  r = yaz_marc_decode_buf (mt, buf, -1, &result, &rlentmp);
+                  rlen = (size_t) rlentmp; }
                 if (r > 0 && result)
                 {
                     fwrite (result, rlen, 1, stdout);
                 if (r > 0 && result)
                 {
                     fwrite (result, rlen, 1, stdout);