summaryrefslogtreecommitdiffstats
path: root/src/npplayer.c
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-15 15:30:48 -0600
committerTimothy Pearson <[email protected]>2011-12-15 15:30:48 -0600
commitf97c8a56e217f04e08776ccf8021721b7d919b7d (patch)
tree436c68db12057f4d08acfbf37bec9cd8dfafcec8 /src/npplayer.c
parentd211eb866a067b537fb32cab5f10f8dd24a73ad7 (diff)
downloadkmplayer-f97c8a56e217f04e08776ccf8021721b7d919b7d.tar.gz
kmplayer-f97c8a56e217f04e08776ccf8021721b7d919b7d.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'src/npplayer.c')
-rw-r--r--src/npplayer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/npplayer.c b/src/npplayer.c
index 8209bbf..e7f67bb 100644
--- a/src/npplayer.c
+++ b/src/npplayer.c
@@ -379,7 +379,7 @@ static NPError nsDestroyStream (NPP instance, NPStream *stream, NPError reason)
return NPERR_NO_DATA;
}
-static void nstqStatus (NPP instance, const char* message) {
+static void nsStatus (NPP instance, const char* message) {
(void)instance;
print ("NPN_Status %s\n", message ? message : "-");
}
@@ -966,7 +966,7 @@ static int initPlugin (const char *plugin_lib) {
ns_funcs.newstream = nsNewStream;
ns_funcs.write = nsWrite;
ns_funcs.destroystream = nsDestroyStream;
- ns_funcs.status = nstqStatus;
+ ns_funcs.status = nsStatus;
ns_funcs.uagent = nsUserAgent;
ns_funcs.memalloc = nsAlloc;
ns_funcs.memfree = nsMemFree;