summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2008-12-09 23:48:34 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2008-12-09 23:48:34 +0000
commit40ff47c7eea41ac893d7af5c5b97ace52a5ffade (patch)
tree9cbb0b2c8bb20bcdb605f35cef8518687fc51a0e
parenta29b659758e3d15b11a22f3ae369a9240de182b5 (diff)
downloadrockbox-40ff47c7eea41ac893d7af5c5b97ace52a5ffade.tar.gz
rockbox-40ff47c7eea41ac893d7af5c5b97ace52a5ffade.zip
fix yellow - bogus unitialized use warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19376 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/resize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/resize.c b/apps/recorder/resize.c
index cce20cdd77..30ffa44b63 100644
--- a/apps/recorder/resize.c
+++ b/apps/recorder/resize.c
@@ -396,10 +396,10 @@ static inline bool scale_nearest(struct bitmap *bm,
396 int ixls, xels, iyls, yelsi, oyls, yelso, p; 396 int ixls, xels, iyls, yelsi, oyls, yelso, p;
397 struct img_part *cur_part; 397 struct img_part *cur_part;
398#ifndef HAVE_LCD_COLOR 398#ifndef HAVE_LCD_COLOR
399 fb_data *dest, *dest_t; 399 fb_data *dest = dest, *dest_t;
400#endif 400#endif
401#ifdef HAVE_REMOTE_LCD 401#ifdef HAVE_REMOTE_LCD
402 fb_remote_data *rdest, *rdest_t; 402 fb_remote_data *rdest = rdest, *rdest_t;
403#endif 403#endif
404 404
405 SDEBUGF("scale_nearest sw=%d sh=%d dw=%d dh=%d remote=%d\n", sw, sh, dw, 405 SDEBUGF("scale_nearest sw=%d sh=%d dw=%d dh=%d remote=%d\n", sw, sh, dw,