Mentions légales du service

Skip to content
Snippets Groups Projects

Fix small issues

Merged Mathieu Faverge requested to merge faverge/chameleon:hotfix/minor into master
4 files
+ 6
4
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 2
2
@@ -119,9 +119,9 @@ void chameleon_pclag2z(CHAM_context_t *chamctxt);
*/
#if defined(__GNUC__)
static inline int chameleon_asprintf( char **strp, const char *fmt, ... ) __attribute__((format(printf,2,3)));
static inline int chameleon_asprintf( char **restrict strp, const char *fmt, ... ) __attribute__((format(printf,2,3)));
#endif
static inline int chameleon_asprintf( char **strp, const char *fmt, ... )
static inline int chameleon_asprintf( char **restrict strp, const char *fmt, ... )
{
va_list ap;
int rc;
Loading