From 6643d39b2c9c66836a2d343422b0cdc3de5e69fd Mon Sep 17 00:00:00 2001 From: David Given Date: Sat, 24 Sep 2016 01:09:32 +0200 Subject: [PATCH] Fix some late-night typo bugs. --- mach/proto/mcg/symbol.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mach/proto/mcg/symbol.c b/mach/proto/mcg/symbol.c index f8c2f52fb..6012b91f3 100644 --- a/mach/proto/mcg/symbol.c +++ b/mach/proto/mcg/symbol.c @@ -1,10 +1,7 @@ #include "mcg.h" -typedef int idf_walker_t(struct idf* idf, void* user); - static void init_idf(); static struct idf* str2idf(char* tg, int cp); -static struct idf* walk_idf(idf_walker_t* cb, void* user); #define IDF_TYPE struct symbol #define IDF_NAME symbol @@ -53,7 +50,7 @@ struct symbol* symbol_walk(symbol_walker_t* cb, void* user) { struct symbol* symbol = &idf->symbol; if (cb(symbol, user)) - return &symbol; + return symbol; idf = idf->id_next; } } -- 2.34.1