diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-07 21:21:35 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-07 21:21:35 +0200 |
commit | 72502048605f35642f421bd256021dbd93482728 (patch) | |
tree | 71cba6df0416fc429171cef5b53f24057ef60275 /lib | |
parent | 7fb0e4d32e5a7ccc121c42e043db795286e1a567 (diff) | |
parent | b56784ba37622f28147b6a10c7ba77f9c9fbf2f7 (diff) | |
download | xine-lib-72502048605f35642f421bd256021dbd93482728.tar.gz xine-lib-72502048605f35642f421bd256021dbd93482728.tar.bz2 |
Merge changes from main repository.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/os_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/os_internal.h b/lib/os_internal.h index 8ecfbaeab..dd48e04f7 100644 --- a/lib/os_internal.h +++ b/lib/os_internal.h @@ -120,8 +120,8 @@ void xine_private_unsetenv(const char *name); #define asprintf(STRINGPP, FORMAT, ...) xine_private_asprintf((STRINGPP), FORMAT, __VA_ARGS__) #endif #define vasprintf(STRINGPP, FORMAT, VA_ARG) xine_private_vasprintf((STRINGPP), (FORMAT), (VA_ARG)) -int xine_private_asprintf(char **string, const char *format, ...) __attribute__ ((format (printf, 2, 3))); -int xine_private_vasprintf(char **string, const char *format, va_list ap) __attribute__ ((format (printf, 2, 0))); +int xine_private_asprintf(char **string, const char *format, ...) XINE_FORMAT_PRINTF(2, 3); +int xine_private_vasprintf(char **string, const char *format, va_list ap) XINE_FORMAT_PRINTF(2, 0); #endif /* replacement of strndup */ |