~ubuntu-branches/ubuntu/wily/seabios/wily-proposed

« back to all changes in this revision

Viewing changes to scripts/kconfig/mconf.c

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn
  • Date: 2015-06-04 16:06:25 UTC
  • mfrom: (23.2.1 sid)
  • Revision ID: package-import@ubuntu.com-20150604160625-luaye2ktyn264doa
Tags: 1.8.1-2ubuntu1
* New debian release.  Remaining change:
  - Build with -fgnu89-inline for GCC 5 (doko)

Show diffs side-by-side

added added

removed removed

Lines of Context:
299
299
        int size;
300
300
 
301
301
        size = snprintf(menu_backtitle, sizeof(menu_backtitle),
302
 
                        "%s - %s", config_filename, rootmenu.prompt->text);
 
302
                        "%s - %s", config_filename, rootmenu.prompt->text);
303
303
        if (size >= sizeof(menu_backtitle))
304
304
                menu_backtitle[sizeof(menu_backtitle)-1] = '\0';
305
305
        set_dialog_backtitle(menu_backtitle);
1034
1034
 
1035
1035
        return res;
1036
1036
}
1037