summaryrefslogtreecommitdiffstats
path: root/src/npplayer.c
diff options
context:
space:
mode:
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;