Changeset 48878 in webkit


Ignore:
Timestamp:
Sep 29, 2009 9:10:02 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-09-29 Janne Koskinen <janne.p.koskinen@digia.com>

Reviewed by David Kilzer.

[Qt] Assert messages prints visible in Symbian
https://bugs.webkit.org/show_bug.cgi?id=29808

Asserts use vprintf to print the messages to stderr.
In Symbian Open C it is not possible to see stderr so
I routed the messages to stdout instead.

  • wtf/Assertions.cpp:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r48869 r48878  
     12009-09-29  Janne Koskinen  <janne.p.koskinen@digia.com>
     2
     3        Reviewed by David Kilzer.
     4
     5        [Qt] Assert messages prints visible in Symbian
     6        https://bugs.webkit.org/show_bug.cgi?id=29808
     7
     8        Asserts use vprintf to print the messages to stderr.
     9        In Symbian Open C it is not possible to see stderr so
     10        I routed the messages to stdout instead.
     11
     12        * wtf/Assertions.cpp:
     13
    1142009-09-29  Janne Koskinen  <janne.p.koskinen@digia.com>
    215
  • trunk/JavaScriptCore/wtf/Assertions.cpp

    r45921 r48878  
    106106    }
    107107#endif
     108#if PLATFORM(SYMBIAN)
     109    vfprintf(stdout, format, args);
     110#else
    108111    vfprintf(stderr, format, args);
     112#endif
    109113}
    110114
Note: See TracChangeset for help on using the changeset viewer.