diff options
author | root <root@fedora-arm.domain.avtechpulse.com> | 1999-12-31 19:14:25 -0500 |
---|---|---|
committer | root <root@fedora-arm.domain.avtechpulse.com> | 1999-12-31 19:14:25 -0500 |
commit | ece0ad7e660b2285dda7d9bd52dd07d8eb2dd479 (patch) | |
tree | b25b15f8d8b4c4c6218ce553f651af4b6ae60b2b /flash.c | |
parent | fb5c5c55c52772f3117be92c645646e927c78979 (diff) |
fix flash init reporting on LCD
Diffstat (limited to 'flash.c')
-rw-r--r-- | flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -742,7 +742,7 @@ void initFlash(FlashStruct *mem, int starting_location) g_print_debug ("initializing flash memory\n"); LCD_write(0,0,"Initialize Flash Memory ..."); - gchar *message = g_strdup_printf ("Initialize Flash Memory, %d - %ld", starting_location, sizeof(*mem)); + gchar *message = g_strdup_printf ("Initialize Flash Memory, %d - %d", starting_location, (int) sizeof(*mem)); LCD_write(0,0,message); g_free (message); |