Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-06-22 07:05:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-22 07:05:48 +0400
commitf69d5cc4b84ef3a87a56d23e6228f72feb6e2fb0 (patch)
tree79aa764f67bc00476371e5239360e3daf2e5783d
parent9a7bfca448c603bf99b995e5d38f84e5caaec604 (diff)
Remove unused function
-rw-r--r--source/blender/imbuf/intern/thumbs.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/imbuf/intern/thumbs.c b/source/blender/imbuf/intern/thumbs.c
index 41784b1e448..9a97a142198 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)