[icedtea-web] RFC: Minor buildfix for 1.0

Deepak Bhole dbhole at redhat.com
Thu Aug 4 12:30:06 PDT 2011


Hi,

Just tried to do a clean 1.0 build and noticed that it failed. Not sure how
this slipped before :/

Attached patch fixes the debug() statement to match the signature
present in 1.0. 

Okay for 1.0?

2011-08-04  Deepak Bhole <dbhole at redhat.com>

    * plugin/icedteanp/java/sun/applet/PluginStreamHandler.java
    (readPair): Fix call to PluginDebug.debug() to match signature.

Cheers,
Deepak
-------------- next part --------------
diff -r 7ee2e487f4e2 plugin/icedteanp/java/sun/applet/PluginStreamHandler.java
--- a/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java	Wed Aug 03 14:11:11 2011 -0400
+++ b/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java	Thu Aug 04 15:28:04 2011 -0400
@@ -222,7 +222,7 @@
             }
         }
 
-        PluginDebug.debug("readPair: '", array[0], "' - '", array[1], "' ", end);
+        PluginDebug.debug("readPair: '" + array[0] + "' - '" + array[1] + "' " + end);
         return end;
     }
 


More information about the distro-pkg-dev mailing list