Show
Ignore:
Timestamp:
11/11/16 02:53:52 (7 years ago)
Author:
jwoithe
Message:

Fix some warnings emitted by recent versions of gcc. These are mostly connected with printf format strings: spaces are now required between string literals and PR* format macros. Patch from Xavier Forestier.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/src/debugmodule/debugmodule.cpp

    r2517 r2651  
    188188    int chars_written=0; 
    189189    int retval=0; 
    190     retval = snprintf(msg, MB_BUFFERSIZE, "%011"PRIu64": %s (%s)[%4u] %s: ",  
     190    retval = snprintf(msg, MB_BUFFERSIZE, "%011" PRIu64 ": %s (%s)[%4u] %s: ",  
    191191                      ts_usec, getPreSequence( level ), 
    192192                      fname,  line,  function );