summaryrefslogtreecommitdiff
path: root/x11-wm/afterstep-stable/files/patch-libAfterBase-audit.c
blob: 05feb29018caebc841300fb086693efa0eacbd3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
--- libAfterBase/audit.c.orig	Sat Sep 25 03:45:27 2004
+++ libAfterBase/audit.c	Wed Sep 29 15:36:51 2004
@@ -498,7 +498,7 @@
 #else
 	/*fprintf( stderr, "%s: freeing %p at %s:%d\n", __FUNCTION__, m->ptr, fname, line );*/
 	safefree (m->ptr);
-	mem_destroy( (ASHashableValue)NULL, m );
+	mem_destroy( (ASHashableValue)(void*)NULL, m );
 #endif
 }
 
@@ -817,7 +817,7 @@
 */
 
 	XFreePixmap (display, pmap);
-	mem_destroy( (ASHashableValue)NULL, m );
+	mem_destroy( (ASHashableValue)(void*)NULL, m );
 	return Success;
 }
 
@@ -852,7 +852,7 @@
 	}
 
 	XFreeGC (display, gc);
-	mem_destroy( (ASHashableValue)NULL, m );
+	mem_destroy( (ASHashableValue)(void*)NULL, m );
 	return Success;
 }
 
@@ -931,17 +931,17 @@
 		/* can also be of C_MEM type if we allocated it ourselvs */
 		m = count_find_and_extract (fname, line, (void *)image, C_MEM);
 	if (m)
-		mem_destroy( (ASHashableValue)NULL, m );
+		mem_destroy( (ASHashableValue)(void*)NULL, m );
 
 	/* find and free the image->data pointer if it is in our list */
 	if( image_data )
 		if ((m = count_find_and_extract (fname, line, image_data, C_MEM)) != NULL)
-			mem_destroy( (ASHashableValue)NULL, m );
+			mem_destroy( (ASHashableValue)(void*)NULL, m );
 
 	/* find and free the image->obdata pointer if it is in our list */
 	if( image_obdata )
 		if ((m = count_find_and_extract (fname, line, image_obdata, C_MEM)) != NULL)
-			mem_destroy( (ASHashableValue)NULL, m );
+			mem_destroy( (ASHashableValue)(void*)NULL, m );
 
 	return Success;
 }
@@ -1140,7 +1140,7 @@
 	}
 
 	XFree (data);
-	mem_destroy( (ASHashableValue)NULL, m );
+	mem_destroy( (ASHashableValue)(void*)NULL, m );
 	return Success;
 }