diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:10:16 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:10:16 -0600 |
commit | 81ad3b51a1f061b0934426aaf339917f76c0cfc5 (patch) | |
tree | d58f2500c1bfa5abeb84264cbaee55a7dd161bac /src/npplayer.c | |
parent | ee4b31b7bd3e899cad30866bf083c3ff6a4a9fc8 (diff) | |
download | kmplayer-81ad3b51a1f061b0934426aaf339917f76c0cfc5.tar.gz kmplayer-81ad3b51a1f061b0934426aaf339917f76c0cfc5.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/npplayer.c')
-rw-r--r-- | src/npplayer.c | 4 |
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; |