Changeset 24244 in webkit


Ignore:
Timestamp:
Jul 12, 2007 12:14:58 PM (17 years ago)
Author:
ap
Message:

Reviewed by Mitz.

http://bugs.webkit.org/show_bug.cgi?id=14596
Fix JSC compilation with KJS_VERBOSE.

  • kjs/function.cpp: (KJS::FunctionImp::passInParameters):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r24224 r24244  
     12007-07-12  Alexey Proskuryakov  <ap@webkit.org>
     2
     3        Reviewed by Mitz.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=14596
     6        Fix JSC compilation with KJS_VERBOSE.
     7
     8        * kjs/function.cpp:
     9        (KJS::FunctionImp::passInParameters):
     10
    1112007-07-11  George Staikos  <staikos@kde.org>
    212
  • trunk/JavaScriptCore/kjs/function.cpp

    r21032 r24244  
    156156    fprintf(stderr, "---------------------------------------------------\n"
    157157          "processing parameters for %s call\n",
    158           name().isEmpty() ? "(internal)" : name().ascii());
     158          functionName().isEmpty() ? "(internal)" : functionName().ascii());
    159159#endif
    160160
     
    162162    for (size_t i = 0; i < size; ++i) {
    163163#ifdef KJS_VERBOSE
    164       fprintf(stderr, "setting parameter %s ", parameters->at(i).name.ascii());
     164      fprintf(stderr, "setting parameter %s ", parameters.at(i).name.ascii());
    165165      printInfo(exec, "to", args[i]);
    166166#endif
Note: See TracChangeset for help on using the changeset viewer.