Fix compiler warning about different signedness of pointers in editcmd.c

Signed-off-by: Patrick Winnertz <winnie@debian.org>
This commit is contained in:
Patrick Winnertz 2009-06-30 13:45:19 +02:00 committed by Slava Zanko
parent bada6849cd
commit 2a9faab6e4

View File

@ -14,7 +14,7 @@ struct etags_hash_struct;
/*** structures declarations (and typedefs of structures)*****************************************/ /*** structures declarations (and typedefs of structures)*****************************************/
struct selection { struct selection {
unsigned char *text; gchar *text;
int len; int len;
}; };