From fa69950c67a1ac97ed581097f97498c697fc645a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Santos=20Costa?= Date: Tue, 29 Mar 2016 01:51:48 +0100 Subject: [PATCH] fix warnings --- C/blobs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C/blobs.c b/C/blobs.c index 2e19d06e4..a15bf421a 100644 --- a/C/blobs.c +++ b/C/blobs.c @@ -31,10 +31,10 @@ static blob_type_t unregistered_blob_atom = char * Yap_blob_to_string(AtomEntry *ref, const char *s0, size_t sz) { - int rc; + // int rc; char *s = (char *)s0; - blob_type_t *type = RepBlobProp(ref->PropsOfAE)->blob_type; + // blob_type_t *type = RepBlobProp(ref->PropsOfAE)->blob_type; #if HAVE_FMEMOPEN if (type->write) { FILE *f = fmemopen( s, sz, "w");