graphicscomposition/openwfcompositionengine/adaptation/src/Platform/OS/symbian/owfconsole.cpp
changeset 36 01a6848ebfd7
parent 0 5d03bc08d59c
child 152 9f1c3fea0f87
equal deleted inserted replaced
0:5d03bc08d59c 36:01a6848ebfd7
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
    52 */
    52 */
    53 extern "C" void xprintf(const char* aFormat, ...)
    53 extern "C" void xprintf(const char* aFormat, ...)
    54     {
    54     {
    55     va_list list; 
    55     va_list list; 
    56     va_start(list, aFormat);
    56     va_start(list, aFormat);
       
    57 	// Disabled Coverity warning, since it does not support vararg and throws a warning 
       
    58 	// coverity[uninit_use_in_call]
    57     xvprintf(aFormat, list);
    59     xvprintf(aFormat, list);
    58     va_end(list);
    60     va_end(list);
    59     }
    61     }
    60 
    62 
    61 static void (*gAtExitFunc)(void) = NULL;
    63 static void (*gAtExitFunc)(void) = NULL;