~didier-barvaux/+junk/rohc-tcp

« back to all changes in this revision

Viewing changes to src/common/rohc_traces.h

  • Committer: Didier Barvaux
  • Date: 2013-06-30 12:53:19 UTC
  • mfrom: (535.1.213 rohc-main)
  • Revision ID: didier@barvaux.org-20130630125319-33xosfau63ygas1f
Sync with main branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
#if defined(__USE_MINGW_ANSI_STDIO) && __USE_MINGW_ANSI_STDIO == 1
67
67
        /* MinGW interprets 'printf' format as 'ms_printf', so force
68
68
         * usage of 'gnu_printf' */
69
 
        __attribute__((format(gnu_printf, 4, 5), nonnull(4)));
 
69
        __attribute__((format(gnu_printf, 4, 5)));
70
70
#else
71
71
        /* Use 'printf' format in other cases, because old GCC versions
72
72
         * and Clang do not recognize 'gnu_printf' format */
73
 
        __attribute__((format(printf, 4, 5), nonnull(4)));
 
73
        __attribute__((format(printf, 4, 5)));
74
74
#endif
75
75
 
76
76