Changeset 8aef01c in mainline for uspace/srv/hid/display/test/window.c
- Timestamp:
- 2020-06-07T10:18:14Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a65b0c8
- Parents:
- 6301a24f
- git-author:
- Jiri Svoboda <jiri@…> (2020-06-07 10:11:32)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-06-07 10:18:14)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/test/window.c
r6301a24f r8aef01c 63 63 errno_t rc; 64 64 65 rc = ds_display_create(NULL, &disp);65 rc = ds_display_create(NULL, df_none, &disp); 66 66 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 67 67 … … 109 109 errno_t rc; 110 110 111 rc = ds_display_create(NULL, &disp);111 rc = ds_display_create(NULL, df_none, &disp); 112 112 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 113 113 … … 146 146 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 147 147 148 rc = ds_display_create(gc, &disp);148 rc = ds_display_create(gc, df_none, &disp); 149 149 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 150 150 … … 192 192 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 193 193 194 rc = ds_display_create(gc, &disp);194 rc = ds_display_create(gc, df_none, &disp); 195 195 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 196 196 … … 260 260 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 261 261 262 rc = ds_display_create(gc, &disp);262 rc = ds_display_create(gc, df_none, &disp); 263 263 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 264 264 … … 303 303 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 304 304 305 rc = ds_display_create(gc, &disp);305 rc = ds_display_create(gc, df_none, &disp); 306 306 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 307 307 … … 349 349 errno_t rc; 350 350 351 rc = ds_display_create(NULL, &disp);351 rc = ds_display_create(NULL, df_none, &disp); 352 352 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 353 353 … … 614 614 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 615 615 616 rc = ds_display_create(gc, &disp);616 rc = ds_display_create(gc, df_none, &disp); 617 617 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 618 618
Note:
See TracChangeset
for help on using the changeset viewer.