diff options
author | David Robillard <d@drobilla.net> | 2012-08-03 17:56:44 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-03 17:56:44 +0000 |
commit | 97a1c3c55874ef48ea591146ee16fdb0c76a730f (patch) | |
tree | e824cae8e298db63fead08744fa10cd3bb351400 /lv2/lv2plug.in/ns/ext/log | |
parent | 0994283a7d427b0554398b912360312b621de8ee (diff) | |
download | lv2-97a1c3c55874ef48ea591146ee16fdb0c76a730f.tar.xz |
Fix compilation with MSVC.
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/log')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/log/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2/lv2plug.in/ns/ext/log/log.h b/lv2/lv2plug.in/ns/ext/log/log.h index 8521ea8..2279fa3 100644 --- a/lv2/lv2plug.in/ns/ext/log/log.h +++ b/lv2/lv2plug.in/ns/ext/log/log.h @@ -44,7 +44,7 @@ extern "C" { /** Allow type checking of printf-like functions. */ # define LV2_LOG_FUNC(fmt, arg1) __attribute__((format(printf, fmt, arg1))) #else -# define LV2_LOG_FUNC +# define LV2_LOG_FUNC(fmt, arg1) #endif /** |