Changeset 1843


Ignore:
Timestamp:
05/08/12 12:47:55 (13 months ago)
Author:
philmoz
Message:

Merged revision(s) 1842 from branches/release-1_0:
Fix compile errors when using OPT_EXMEM_TESTING.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/core/gui.c

    r1830 r1843  
    22112211        if (cnt != 0) 
    22122212        { 
    2213             sprintf(osd_buf, "s:%8x e:%8x", exmem_start, exmem_end); 
    2214             draw_txt_string(2, 12, osd_buf, conf.osd_color); 
    2215             sprintf(osd_buf, "f:%8x l:%8x c:%d", f, l, cnt); 
     2213            sprintf(buf, "s:%8x e:%8x", exmem_start, exmem_end); 
     2214            draw_txt_string(2, 12, buf, conf.osd_color); 
     2215            sprintf(buf, "f:%8x l:%8x c:%d", f, l, cnt); 
    22162216        } 
    22172217        else 
    22182218        { 
    2219             sprintf(osd_buf, "OK 0x%x", exmem_start); 
    2220         } 
    2221         draw_txt_string(2, 13, osd_buf, conf.osd_color); 
     2219            sprintf(buf, "OK 0x%x", exmem_start); 
     2220        } 
     2221        draw_txt_string(2, 13, buf, conf.osd_color); 
    22222222        // end of check  
    22232223    } 
Note: See TracChangeset for help on using the changeset viewer.