From 71d22cb298a47aed816738532daf513c19e65a46 Mon Sep 17 00:00:00 2001 From: Rob Savoye Date: Mon, 22 Aug 2011 10:06:53 -0600 Subject: [PATCH] eliminate warning about unused variable --- plugin/npapi/mozilla-sdk/npp_gate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/npapi/mozilla-sdk/npp_gate.cpp b/plugin/npapi/mozilla-sdk/npp_gate.cpp index 6b8539ac7..21b03ef2e 100644 --- a/plugin/npapi/mozilla-sdk/npp_gate.cpp +++ b/plugin/npapi/mozilla-sdk/npp_gate.cpp @@ -56,7 +56,7 @@ NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc } // here is the place to clean up and destroy the nsPluginInstance object -NPError NPP_Destroy (NPP instance, NPSavedData** save) +NPError NPP_Destroy (NPP instance, NPSavedData** /* save */) { if (!instance) { return NPERR_INVALID_INSTANCE_ERROR; -- 2.11.4.GIT