From 6779849bc60a24e65072bb3d3f2c2f70156173d0 Mon Sep 17 00:00:00 2001 From: expwnent Date: Sun, 29 Mar 2015 14:21:59 -0400 Subject: [PATCH] This requires a return value in Windows, and really should have one anyway. --- plugins/tweak/tweak.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/tweak/tweak.cpp b/plugins/tweak/tweak.cpp index f5a97f579..8e2691149 100644 --- a/plugins/tweak/tweak.cpp +++ b/plugins/tweak/tweak.cpp @@ -262,6 +262,7 @@ DFhackCExport command_result plugin_onupdate (color_ostream &out) if (hook.enabled) hook.callback(); } + return CR_OK; } DFhackCExport command_result plugin_shutdown (color_ostream &out)