aboutsummaryrefslogtreecommitdiff
path: root/src/undo.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-14 09:59:38 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-14 09:59:38 +0000
commitb95a950b7ed1b7fff95e7715873c64b577eaa451 (patch)
tree5aea60ba2751b1ab66b1ea37a7ada9c74472d8ca /src/undo.c
parente7dcb44080e60d8db1455c42c523426ab5abc34f (diff)
fixed warnings about signedness difference.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@583 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/undo.c')
-rw-r--r--src/undo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/undo.c b/src/undo.c
index 6916b98c..f3569e2b 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -52,7 +52,7 @@ static gint undo_merge (GList *list,
guint start_pos,
guint end_pos,
gint action,
- const guchar *text);
+ const gchar *text);
static void undo_add (const gchar *text,
gint start_pos,
gint end_pos,
@@ -202,9 +202,9 @@ static void undo_check_size(UndoMain *undostruct)
* Return Value: TRUE is merge was sucessful, FALSE otherwise
**/
static gint undo_merge(GList *list, guint start_pos, guint end_pos,
- gint action, const guchar *text)
+ gint action, const gchar *text)
{
- guchar *temp_string;
+ gchar *temp_string;
UndoInfo *last_undo;
/* This are the cases in which we will NOT merge :