equal
deleted
inserted
replaced
46 // Generates a log file if c:\logs\locbtnotifier\ folder exists |
46 // Generates a log file if c:\logs\locbtnotifier\ folder exists |
47 // ----------------------------------------------------------------------------- |
47 // ----------------------------------------------------------------------------- |
48 // |
48 // |
49 void DebugLocBtNotifier( TRefByValue<const TDesC> aText, ... ) |
49 void DebugLocBtNotifier( TRefByValue<const TDesC> aText, ... ) |
50 { |
50 { |
|
51 // coverity[var_decl : FALSE] |
51 VA_LIST args; |
52 VA_LIST args; |
52 VA_START( args, aText ); |
53 VA_START( args, aText ); |
53 |
54 |
54 TBuf<KLogLineLength> buf; |
55 TBuf<KLogLineLength> buf; |
|
56 // coverity[uninit_use_in_call : FALSE] |
55 buf.FormatList( aText, args ); |
57 buf.FormatList( aText, args ); |
56 |
58 |
57 #ifdef _DEBUG |
59 #ifdef _DEBUG |
58 RDebug::Print(buf); |
60 RDebug::Print(buf); |
59 #endif |
61 #endif |