summaryrefslogtreecommitdiffstats
path: root/loader/registry.c
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-27 17:21:20 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-27 17:21:20 +0000
commit52db9b039ad0fe4a6012e52693457bb78f774c37 (patch)
treea43611a9558f8324339d7d4e96adf61fcf90a248 /loader/registry.c
parentbd706e744ad645acd20cf7f8ecf8b1a900245cce (diff)
downloadmpv-52db9b039ad0fe4a6012e52693457bb78f774c37.tar.bz2
mpv-52db9b039ad0fe4a6012e52693457bb78f774c37.tar.xz
avoids warnings
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4385 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/registry.c')
-rw-r--r--loader/registry.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/loader/registry.c b/loader/registry.c
index 26fd768177..706b9d5d80 100644
--- a/loader/registry.c
+++ b/loader/registry.c
@@ -18,11 +18,12 @@
//#undef TRACE
//#define TRACE printf
-// ...can be set before init_registry() call
-char* regpathname = 0;
+extern char *get_path ( char * );
+// ...can be set before init_registry() call
+char* regpathname = NULL;
-static char* localregpathname = 0;
+static char* localregpathname = NULL;
typedef struct reg_handle_s
{