[gimp/gimp-2-8] Fix clang complaining about missing void in function prototypes.
- From: John Ralls <jralls src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gimp-2-8] Fix clang complaining about missing void in function prototypes.
- Date: Mon, 23 Feb 2015 23:20:35 +0000 (UTC)
commit 6bbae6da7a28b9ec630e8f38c7f84ad9df02f8e8
Author: John Ralls <jralls ceridwen us>
Date: Mon Feb 23 15:12:33 2015 -0800
Fix clang complaining about missing void in function prototypes.
plug-ins/twain/tw_local.h | 6 +++---
plug-ins/twain/tw_mac.c | 5 +++--
2 files changed, 6 insertions(+), 5 deletions(-)
---
diff --git a/plug-ins/twain/tw_local.h b/plug-ins/twain/tw_local.h
index e76cf87..45b2fca 100644
--- a/plug-ins/twain/tw_local.h
+++ b/plug-ins/twain/tw_local.h
@@ -34,7 +34,7 @@ TW_UINT16 callDSM(pTW_IDENTITY, pTW_IDENTITY,
TW_UINT16, TW_MEMREF);
int twainIsAvailable(void);
-void twainQuitApplication ();
+void twainQuitApplication (void);
gboolean twainSetupCallback (pTW_SESSION twSession);
TW_HANDLE twainAllocHandle(size_t size);
@@ -42,7 +42,7 @@ TW_MEMREF twainLockHandle (TW_HANDLE handle);
void twainUnlockHandle (TW_HANDLE handle);
void twainFreeHandle (TW_HANDLE handle);
-int twainMain ();
-int scanImage ();
+int twainMain (void);
+int scanImage (void);
#endif
diff --git a/plug-ins/twain/tw_mac.c b/plug-ins/twain/tw_mac.c
index 796d28e..e044e01 100644
--- a/plug-ins/twain/tw_mac.c
+++ b/plug-ins/twain/tw_mac.c
@@ -146,7 +146,7 @@ TW_UINT16 twainCallback(pTW_IDENTITY pOrigin,
return TWRC_SUCCESS;
}
-void twainQuitApplication ()
+void twainQuitApplication (void)
{
QuitApplicationEventLoop();
}
@@ -192,6 +192,7 @@ static void twainSetupMacUI()
/* Voodoo magic fix inspired by java_swt launcher */
/* Without this the icon setting doesn't work about half the time. */
+
CGrafPtr p = BeginQDContextForApplicationDockTile();
EndQDContextForApplicationDockTile(p);
@@ -199,7 +200,7 @@ static void twainSetupMacUI()
}
int
-twainMain()
+twainMain(void)
{
EventLoopTimerRef timer;
OSStatus err;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]