summaryrefslogtreecommitdiff
path: root/src/gallery-utils.c
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-04-04 20:09:08 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-04-04 20:09:08 +0200
commitc572b8e7a250ecfba7836c55bb5eda4c9473280a (patch)
tree56e513682ede75e15dba8049240ff535ef183540 /src/gallery-utils.c
parentcad89a1f9b9e36d7490c3f8cd1449082a1285050 (diff)
downloadcataract-c572b8e7a250ecfba7836c55bb5eda4c9473280a.tar.xz
New block parser
Diffstat (limited to 'src/gallery-utils.c')
-rw-r--r--src/gallery-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallery-utils.c b/src/gallery-utils.c
index 2958c51..7f1222a 100644
--- a/src/gallery-utils.c
+++ b/src/gallery-utils.c
@@ -258,7 +258,7 @@ remove_tags (char **str, const char *tag_begin, const char *tag_end)
memcpy (dest, src, found - src);
memcpy (dest + (found - src), found2, strlen (found2) + 1);
#ifdef __DEBUG_ALL__
- printf ("found = %ld, found2 = %ld, strlen = %d, res = %d\n", (long int)found, (long int)found2, strlen (src), strlen (src) - (found2 - found) + 1);
+ printf ("found = %p, found2 = %p, strlen = %d, res = %d\n", found, found2, strlen (src), strlen (src) - (found2 - found) + 1);
printf ("orig = %s, new = %s, strlen = %d\n", src, dest, strlen (dest));
#endif
g_free (src);