]> granicus.if.org Git - graphviz/commitdiff
sfio: remove some open coded nulls
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 19 Jan 2023 15:59:51 +0000 (07:59 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 21 Jan 2023 23:24:50 +0000 (15:24 -0800)
lib/ast/sfstr.h

index 3dc681ae9f02bd6e17de9e2f8586bfd3d86c9666..bc4d48b93844d7cadcb85bbf5554e37a884cbe93 100644 (file)
@@ -10,6 +10,8 @@
 
 #pragma once
 
+#include <stddef.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -20,7 +22,7 @@ extern "C" {
 
 #include <sfio/sfio.h>
 
-#define sfstropen()    sfnew((Sfio_t*)0,(char*)0,-1,-1,SF_WRITE|SF_STRING)
+#define sfstropen()    sfnew(NULL, NULL, -1, -1, SF_WRITE | SF_STRING)
 #define sfstrclose(f)  sfclose(f)
 
 #define sfstruse(f)    (sfputc(f,0), (char*)((f)->next = (f)->data) )