Description: This patch fix the cast error using char* instead of char *
Forwarded: No
Author: Wences Arana <aranax@debian.org.gt>
Last-Update: 2011-07-25

--- a/src/binreloc.cxx
+++ b/src/binreloc.cxx
@@ -744,7 +744,7 @@
 	if (path == (const char *) NULL)
 		return (char *) NULL;
 
-	end = strrchr (path, '/');
+	end = (char *) strrchr (path, '/');
 	if (end == (const char *) NULL)
 		return strdup (".");
 
