Kaydet (Commit) 52e23769 authored tarafından Nick Treleaven's avatar Nick Treleaven

Fix some signed comparison warnings

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@555 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 1b122c6b
......@@ -533,7 +533,7 @@ void tm_project_dump(const TMProject *p)
tm_work_object_dump(TM_WORK_OBJECT(p));
if (p->file_list)
{
int i;
guint i;
for (i=0; i < p->file_list->len; ++i)
{
fprintf(stderr, "->\t");
......
......@@ -163,16 +163,16 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
glob_t globbuf;
#endif
int idx_inc;
int idx_glob;
size_t idx_glob;
char *command;
guint i;
FILE *fp;
TMWorkObject *source_file;
GPtrArray *tags_array;
GList *includes_files = NULL;
int list_len;
int idx_main;
int idx_sub;
guint list_len;
guint idx_main;
guint idx_sub;
int remove_count = 0;
#ifdef G_OS_WIN32
char *temp_file = g_strdup_printf("%s_%d_%ld_1.cpp", P_tmpdir, getpid(), time(NULL));
......@@ -428,7 +428,7 @@ void tm_workspace_dump(void)
tm_work_object_dump(TM_WORK_OBJECT(theWorkspace));
if (theWorkspace->work_objects)
{
int i;
guint i;
for (i=0; i < theWorkspace->work_objects->len; ++i)
{
if (IS_TM_PROJECT(TM_WORK_OBJECT(theWorkspace->work_objects->pdata[i])))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment