Commit 420435e7 authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[AGPGART] missing %p in debug printk

parent 8b8f033b
...@@ -126,7 +126,7 @@ static void agp_remove_seg_from_client(struct agp_client *client) ...@@ -126,7 +126,7 @@ static void agp_remove_seg_from_client(struct agp_client *client)
if (client->segments != NULL) { if (client->segments != NULL) {
if (*(client->segments) != NULL) { if (*(client->segments) != NULL) {
DBG("Freeing %p from client", *(client->segments), client); DBG("Freeing %p from client %p", *(client->segments), client);
kfree(*(client->segments)); kfree(*(client->segments));
} }
DBG("Freeing %p from client %p", client->segments, client); DBG("Freeing %p from client %p", client->segments, client);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment