summaryrefslogtreecommitdiff
path: root/src/fr-init.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-08-25 15:22:37 +0200
committerRobert Antoni Buj Gelonch <[email protected]>2019-08-28 10:56:50 +0200
commitbe1c0f26fc9d0eee7eff330acc4738224253cc3e (patch)
tree896295766514978db98a40b86adb87f8590387ef /src/fr-init.c
parent66076cf781963cd1b781ba8e42d32efcf8fa9180 (diff)
downloadengrampa-be1c0f26fc9d0eee7eff330acc4738224253cc3e.tar.bz2
engrampa-be1c0f26fc9d0eee7eff330acc4738224253cc3e.tar.xz
comparison of integers of different signs: 'int' and 'guint'
Fix compiler warning: comparison of integers of different signs: 'int' and 'guint' (aka 'unsigned int') [-Wsign-compare]
Diffstat (limited to 'src/fr-init.c')
-rw-r--r--src/fr-init.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/fr-init.c b/src/fr-init.c
index 748c79a..3c6ce24 100644
--- a/src/fr-init.c
+++ b/src/fr-init.c
@@ -289,7 +289,7 @@ static FrCommandCaps
fr_registered_command_get_capabilities (FrRegisteredCommand *reg_com,
const char *mime_type)
{
- int i;
+ guint i;
for (i = 0; i < reg_com->caps->len; i++) {
FrMimeTypeCap *cap;
@@ -307,7 +307,7 @@ static FrCommandCaps
fr_registered_command_get_potential_capabilities (FrRegisteredCommand *reg_com,
const char *mime_type)
{
- int i;
+ guint i;
if (mime_type == NULL)
return FR_COMMAND_CAN_DO_NOTHING;
@@ -336,7 +336,7 @@ register_command (GType command_type)
G_GNUC_UNUSED static gboolean
unregister_command (GType command_type)
{
- int i;
+ guint i;
for (i = 0; i < Registered_Commands->len; i++) {
FrRegisteredCommand *command;
@@ -390,7 +390,7 @@ GType
get_command_type_from_mime_type (const char *mime_type,
FrCommandCaps requested_capabilities)
{
- int i;
+ guint i;
if (mime_type == NULL)
return 0;
@@ -415,7 +415,7 @@ GType
get_preferred_command_for_mime_type (const char *mime_type,
FrCommandCaps requested_capabilities)
{
- int i;
+ guint i;
for (i = 0; i < Registered_Commands->len; i++) {
FrRegisteredCommand *command;
@@ -436,14 +436,14 @@ get_preferred_command_for_mime_type (const char *mime_type,
void
update_registered_commands_capabilities (void)
{
- int i;
+ guint i;
g_hash_table_remove_all (ProgramsCache);
for (i = 0; i < Registered_Commands->len; i++) {
FrRegisteredCommand *reg_com;
FrCommand *command;
- int j;
+ guint j;
reg_com = g_ptr_array_index (Registered_Commands, i);
command = (FrCommand*) g_object_new (reg_com->type, NULL);
@@ -582,11 +582,11 @@ static void
compute_supported_archive_types (void)
{
int sf_i = 0, s_i = 0, o_i = 0, c_i = 0;
- int i;
+ guint i;
for (i = 0; i < Registered_Commands->len; i++) {
FrRegisteredCommand *reg_com;
- int j;
+ guint j;
reg_com = g_ptr_array_index (Registered_Commands, i);
for (j = 0; j < reg_com->caps->len; j++) {