diff loader/dshow/allocator.c @ 25794:2c8cdb9123b8

Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a capital letter are reserved for the system, those starting with _ are reserved at the file level.
author diego
date Sun, 20 Jan 2008 17:16:39 +0000
parents 254733f57707
children b70f5ac9c001
line wrap: on
line diff
--- a/loader/dshow/allocator.c	Sun Jan 20 17:03:35 2008 +0000
+++ b/loader/dshow/allocator.c	Sun Jan 20 17:16:39 2008 +0000
@@ -13,10 +13,10 @@
 
 static int AllocatorKeeper = 0;
 
-struct _avm_list_t
+struct avm_list_t
 {
-    struct _avm_list_t* next;
-    struct _avm_list_t* prev;
+    struct avm_list_t* next;
+    struct avm_list_t* prev;
     void* member;
 };