gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. 939942b5197711a46611


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 939942b5197711a466119d99c45291d5d322fe44
Date: Tue, 02 Nov 2010 21:25:18 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  939942b5197711a466119d99c45291d5d322fe44 (commit)
      from  617166eabf52107e0d40ec6d7edfb8f2821bf0e4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=939942b5197711a466119d99c45291d5d322fe44


commit 939942b5197711a466119d99c45291d5d322fe44
Author: Sandro Santilli <address@hidden>
Date:   Tue Nov 2 22:25:13 2010 +0100

    Properly quote identifiers in debug message

diff --git a/plugin/npapi/pluginScriptObject.cpp 
b/plugin/npapi/pluginScriptObject.cpp
index de54b8a..b083eb2 100644
--- a/plugin/npapi/pluginScriptObject.cpp
+++ b/plugin/npapi/pluginScriptObject.cpp
@@ -469,9 +469,9 @@ bool
 GnashPluginScriptObject::GetProperty(NPIdentifier name, NPVariant *result)
 {
     if (NPN_IdentifierIsString(name)) {
-        log_debug("Getting Property %s\"...", NPN_UTF8FromIdentifier(name));
+        log_debug("Getting Property \"%s\"...", NPN_UTF8FromIdentifier(name));
     } else {
-        log_debug("Getting Property %d\"...", NPN_IntFromIdentifier(name));
+        log_debug("Getting Property \"%d\"...", NPN_IntFromIdentifier(name));
     }
 
     std::map<NPIdentifier, GnashNPVariant>::const_iterator it;

-----------------------------------------------------------------------

Summary of changes:
 plugin/npapi/pluginScriptObject.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]