From 1161633db54ce8fd1180649f52909390a2986213 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 5 Jun 2024 15:07:06 -0400 Subject: rename all per-header internal structs to __
_h --- src/stdio/__scanf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdio/__scanf.c') diff --git a/src/stdio/__scanf.c b/src/stdio/__scanf.c index 75e42942..9869fa37 100644 --- a/src/stdio/__scanf.c +++ b/src/stdio/__scanf.c @@ -253,7 +253,7 @@ int __scanf(struct io_options *opt, const char * format, va_list arg) /* TODO: error checking */ str_ptr[i] = __get(opt); } - ASSERT_PREV_STRING(str_ptr, __stdio.formatted_pointers, __stdio.nformatted_pointers, "printf() or similar"); + ASSERT_PREV_STRING(str_ptr, __stdio_h.formatted_pointers, __stdio_h.nformatted_pointers, "printf() or similar"); void **ptr = va_arg(arg, void **); if (ptr == NULL) { UNDEFINED("parameter is NULL"); -- cgit v1.2.1