diff options
author | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-06 22:42:52 +0200 |
---|---|---|
committer | Daniel Elstner <daniel.kitta@gmail.com> | 2015-10-06 23:25:40 +0200 |
commit | 943f9176255c63924fcf55c6ba8bad05e91d4923 (patch) | |
tree | a41970aabbfe46efed24ebb4afb56be44b85f797 /libsigrokdecode-internal.h | |
parent | 41d43a33fb4088889aba931cbdbc032263a6f397 (diff) | |
download | libsigrokdecode-943f9176255c63924fcf55c6ba8bad05e91d4923.tar.gz libsigrokdecode-943f9176255c63924fcf55c6ba8bad05e91d4923.zip |
exception: Decorate catch function with format attribute
Diffstat (limited to 'libsigrokdecode-internal.h')
-rw-r--r-- | libsigrokdecode-internal.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/libsigrokdecode-internal.h b/libsigrokdecode-internal.h index 6084409..d32414a 100644 --- a/libsigrokdecode-internal.h +++ b/libsigrokdecode-internal.h @@ -104,6 +104,15 @@ SRD_PRIV int py_strseq_to_char(PyObject *py_strseq, char ***out_strv); SRD_PRIV GVariant *py_obj_to_variant(PyObject *py_obj); /* exception.c */ -SRD_PRIV void srd_exception_catch(const char *format, ...); +#if defined(G_OS_WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) +/* + * On MinGW, we need to specify the gnu_printf format flavor or GCC + * will assume non-standard Microsoft printf syntax. + */ +SRD_PRIV void srd_exception_catch(const char *format, ...) + __attribute__((__format__ (__gnu_printf__, 1, 2))); +#else +SRD_PRIV void srd_exception_catch(const char *format, ...) G_GNUC_PRINTF(1, 2); +#endif #endif |