Changeset 147885 in webkit


Ignore:
Timestamp:
Apr 7, 2013 4:41:17 PM (11 years ago)
Author:
Patrick Gansterer
Message:

[EFL] --minimal build fails with error: expected ;' before return'
https://bugs.webkit.org/show_bug.cgi?id=113953

Unreviewed.

Patch by Ed Bartosh <bartosh@gmail.com> on 2013-04-07

  • ewk/ewk_security_origin.cpp:

(ewk_security_origin_web_database_quota_get): Added missing semicolon.

Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r147795 r147885  
     12013-04-07  Ed Bartosh  <bartosh@gmail.com>
     2
     3        [EFL] --minimal build fails with error: expected `;' before `return'
     4        https://bugs.webkit.org/show_bug.cgi?id=113953
     5
     6        Unreviewed.
     7
     8        * ewk/ewk_security_origin.cpp:
     9        (ewk_security_origin_web_database_quota_get): Added missing semicolon.
     10
    1112013-04-05  Geoffrey Garen  <ggaren@apple.com>
    212
  • trunk/Source/WebKit/efl/ewk/ewk_security_origin.cpp

    r139417 r147885  
    8282    return WebCore::DatabaseManager::manager().quotaForOrigin(origin->securityOrigin.get());
    8383#else
    84     UNUSED_PARAM(origin)
     84    UNUSED_PARAM(origin);
    8585    return 0;
    8686#endif
Note: See TracChangeset for help on using the changeset viewer.