Changes in uspace/srv/hid/display/cfgops.c [9546146:8a4ceaa] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/cfgops.c
r9546146 r8a4ceaa 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 41 41 #include "display.h" 42 42 #include "idevcfg.h" 43 #include "main.h"44 43 #include "seat.h" 45 44 #include "cfgclient.h" … … 182 181 183 182 (void) ds_display_paint(cfgclient->display, NULL); 184 (void) ds_display_save_cfg(cfgclient->display, cfg_file_path);185 183 ds_display_unlock(cfgclient->display); 186 184 … … 220 218 221 219 (void) ds_display_paint(cfgclient->display, NULL); 222 (void) ds_display_save_cfg(cfgclient->display, cfg_file_path); 223 ds_display_unlock(cfgclient->display); 224 220 ds_display_unlock(cfgclient->display); 225 221 return EOK; 226 222 } … … 258 254 (void)idevcfg; 259 255 260 (void) ds_display_save_cfg(cfgclient->display, cfg_file_path);261 256 ds_display_unlock(cfgclient->display); 262 257 return EOK; … … 292 287 293 288 ds_idevcfg_destroy(idevcfg); 294 (void) ds_display_save_cfg(cfgclient->display, cfg_file_path);295 289 ds_display_unlock(cfgclient->display); 296 290 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.