[Bf-blender-cvs] [f69d5cc] master: Remove unused function

Campbell Barton noreply at git.blender.org
Sun Jun 22 05:07:26 CEST 2014


Commit: f69d5cc4b84ef3a87a56d23e6228f72feb6e2fb0
Author: Campbell Barton
Date:   Sun Jun 22 13:05:48 2014 +1000
https://developer.blender.org/rBf69d5cc4b84ef3a87a56d23e6228f72feb6e2fb0

Remove unused function

===================================================================

M	source/blender/imbuf/intern/thumbs.c

===================================================================

diff --git a/source/blender/imbuf/intern/thumbs.c b/source/blender/imbuf/intern/thumbs.c
index 41784b1..9a97a14 100644
--- a/source/blender/imbuf/intern/thumbs.c
+++ b/source/blender/imbuf/intern/thumbs.c
@@ -197,19 +197,6 @@ static void escape_uri_string(const char *string, char *escaped_string, int esca
 	*q = '\0';
 }
 
-static void to_hex_char(char *hexbytes, const unsigned char *bytes, int len)
-{
-	const unsigned char *p;
-	char *q;
-
-	for (q = hexbytes, p = bytes; len; p++) {
-		const unsigned char c = (unsigned char) *p;
-		len--;
-		*q++ = hex[c >> 4];
-		*q++ = hex[c & 15];
-	}
-}
-
 /** ----- end of adapted code from glib --- */
 
 static int uri_from_filename(const char *path, char *uri)




More information about the Bf-blender-cvs mailing list