diff options
| author | Nils Wallménius <nils@rockbox.org> | 2010-12-20 20:56:22 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2010-12-20 20:56:22 +0000 |
| commit | 4c046d090b6073520690672e65e2e6fbc2d0651f (patch) | |
| tree | cf0d33e05e0cf2160b7a8a2205762dc5c479e9f3 /apps | |
| parent | 4b1758d23926639dca55a63959564a628bf18b22 (diff) | |
| download | rockbox-4c046d090b6073520690672e65e2e6fbc2d0651f.zip rockbox-4c046d090b6073520690672e65e2e6fbc2d0651f.tar.gz rockbox-4c046d090b6073520690672e65e2e6fbc2d0651f.tar.bz2 rockbox-4c046d090b6073520690672e65e2e6fbc2d0651f.tar.xz | |
Fix different enum comparison warning when building with gcc 4.5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28866 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/enc_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/enc_config.c b/apps/enc_config.c index 68e8a63..07405cd 100644 --- a/apps/enc_config.c +++ b/apps/enc_config.c @@ -302,7 +302,7 @@ static void enc_rec_settings_changed(struct encoder_config *cfg) { struct encoder_config enc_config; struct encoder_caps caps; - long table[MAX(CHN_NUM_MODES, REC_NUM_FREQ)]; + long table[MAX((int)CHN_NUM_MODES, (int)REC_NUM_FREQ)]; int n; if (cfg == NULL) |