Changeset 552b69f in mainline for uspace/app/launcher/launcher.c
- Timestamp:
- 2021-11-03T20:56:59Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1aa8c86
- Parents:
- ec8a1bf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/launcher/launcher.c
rec8a1bf r552b69f 56 56 #define NAME "launcher" 57 57 58 static c har *display_spec = UI_DISPLAY_DEFAULT;58 static const char *display_spec = UI_DISPLAY_DEFAULT; 59 59 60 60 static void wnd_close(ui_window_t *, void *); … … 137 137 *argp++ = app; 138 138 139 if ( display_spec != UI_DISPLAY_DEFAULT) {139 if (str_cmp(display_spec, UI_DISPLAY_DEFAULT) != 0) { 140 140 *argp++ = "-d"; 141 141 *argp++ = display_spec;
Note:
See TracChangeset
for help on using the changeset viewer.