From a75ebab4ec19d6ed187e4a7198312b7cc58b5b0b Mon Sep 17 00:00:00 2001 From: daleclack Date: Mon, 28 Jun 2021 15:53:21 +0800 Subject: [PATCH] Update Func and Comments --- Gtk3/src/image_types.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gtk3/src/image_types.h b/Gtk3/src/image_types.h index 3b77a7f..09a5bb2 100644 --- a/Gtk3/src/image_types.h +++ b/Gtk3/src/image_types.h @@ -30,9 +30,9 @@ static const char * const supported_globs[]={ }; static inline gboolean mime_type_supported(){ -#ifdef G_OS_WIN32 - return FALSE; -#else - return TRUE; -#endif + #ifdef G_OS_WIN32 + return FALSE; + #else + return TRUE; + #endif }