summaryrefslogtreecommitdiffstats
path: root/asxparser.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
commite27d606714997a74b94842a55c1f8bef3bbc6c75 (patch)
tree533b6a70ed12f1a6e08e95204be0ccc3d80f065c /asxparser.h
parent3dc7792ae3b3176d115fbc20deeea5f587620860 (diff)
downloadmpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.bz2
mpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.xz
Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved
for the system, names starting with _ are reserved at file level. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25635 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'asxparser.h')
-rw-r--r--asxparser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/asxparser.h b/asxparser.h
index cc3c6eeb16..e6bad13851 100644
--- a/asxparser.h
+++ b/asxparser.h
@@ -1,14 +1,14 @@
#ifndef ASXPARSER_H
#define ASXPARSER_H
-typedef struct _ASX_Parser_t ASX_Parser_t;
+typedef struct ASX_Parser_t ASX_Parser_t;
typedef struct {
char* buffer;
int line;
} ASX_LineSave_t;
-struct _ASX_Parser_t {
+struct ASX_Parser_t {
int line; // Curent line
ASX_LineSave_t *ret_stack;
int ret_stack_size;