]> granicus.if.org Git - graphviz/commitdiff
remove unused mtx parameter to SFCLEAR() macro
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Oct 2020 02:17:23 +0000 (19:17 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 24 Oct 2020 02:16:10 +0000 (19:16 -0700)
lib/sfio/sfio_t.h
lib/sfio/sfnew.c
lib/sfio/sfprintf.c
lib/sfio/sfscanf.c
lib/sfio/sfswap.c

index dac230e68b4c40f2d35e80994851da15dfe0fd28..4c380319de9b848653b8866a63aa25e62bd888ca 100644 (file)
@@ -81,7 +81,7 @@ extern "C" {
        }
 
 /* function to clear an Sfio_t structure */
-#define SFCLEAR(f,mtx) \
+#define SFCLEAR(f) \
        ( (f)->next = (unsigned char*)0,                /* next         */ \
          (f)->endw = (unsigned char*)0,                /* endw         */ \
          (f)->endr = (unsigned char*)0,                /* endr         */ \
index 757432922409ba4656f52ad6c4f1ba4a507220fa..7bc8f403975ac37436e0006da54194047f0fb68c 100644 (file)
@@ -77,7 +77,7 @@ Sfio_t *sfnew(Sfio_t * oldf, void * buf, size_t size, int file,
        if (!f) {
            if (!(f = (Sfio_t *) malloc(sizeof(Sfio_t))))
                return NIL(Sfio_t *);
-           SFCLEAR(f, NIL(Vtmutex_t *));
+           SFCLEAR(f);
        }
     }
 
index 65edaed2761db2bf00112f26643602a0b259abbf..3e5036b3acc7addfcbc210bbc28032fbf01233bc 100644 (file)
@@ -39,7 +39,7 @@ int sfvsprintf(char *s, int n, const char *form, va_list args)
        return -1;
 
     /* make a fake stream */
-    SFCLEAR(&f, NIL(Vtmutex_t *));
+    SFCLEAR(&f);
     f.flags = SF_STRING | SF_WRITE;
     f.mode = SF_WRITE;
     f.size = n - 1;
index b4293219def9ec1330483d7a3c2a57fce3b64b2d..b43864bb13408aed1ec48391e0fedb1d0ef6ac5f 100644 (file)
@@ -36,7 +36,7 @@ int sfvsscanf(const char *s, const char *form, va_list args)
        return -1;
 
     /* make a fake stream */
-    SFCLEAR(&f, NIL(Vtmutex_t *));
+    SFCLEAR(&f);
     f.flags = SF_STRING | SF_READ;
     f.mode = SF_READ;
     f.size = strlen(s);
index 9f66f50d444eb8a4bcbedfee4709d6912dd620a5..dbb083fd66a846fe4cbe62627e9f0ed6b5c45686 100644 (file)
@@ -54,7 +54,7 @@ Sfio_t *sfswap(Sfio_t * f1, Sfio_t * f2)
                return NIL(Sfio_t *);
            }
 
-           SFCLEAR(f2, NIL(Vtmutex_t *));
+           SFCLEAR(f2);
        }
        f2->mode = SF_AVAIL | SF_LOCK;
        f2mode = SF_AVAIL;