diff options
author | Carsten Haitzler <raster@rasterman.com> | 2008-12-07 21:57:11 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2008-12-07 21:57:11 +0000 |
commit | 81c91f034a58d14b854e8529f5163ff63754baf8 (patch) | |
tree | b56f16c740c4834f071c868932860f1314a6802c | |
parent | 76456f4804fb6338f65889168ba494dc79ce8eee (diff) | |
download | enlightenment-81c91f034a58d14b854e8529f5163ff63754baf8.tar.gz enlightenment-81c91f034a58d14b854e8529f5163ff63754baf8.tar.xz enlightenment-81c91f034a58d14b854e8529f5163ff63754baf8.zip |
char is used for numeric values... thus should be explicitly signed!
SVN revision: 37991
-rw-r--r-- | src/bin/e_fm.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index be4df578b..5173aae5e 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -76,8 +76,8 @@ struct _E_Fm2_Smart_Data unsigned char typebuf_visible : 1; unsigned char show_hidden_files : 1; unsigned char listing : 1; - char view_mode; /* -1 = unset */ - short icon_size; /* -1 = unset */ + signed char view_mode; /* -1 = unset */ + signed short icon_size; /* -1 = unset */ E_Fm2_Config *config; const char *custom_theme; @@ -114,11 +114,10 @@ struct _E_Fm2_Smart_Data unsigned char drop_all : 1; unsigned char drag : 1; unsigned char selecting : 1; - struct - { - int ox, oy; - int x, y, w, h; - } selrect; + struct { + int ox, oy; + int x, y, w, h; + } selrect; }; struct _E_Fm2_Region |