Changeset 8ebe212 in mainline for uspace/app/vuhid/main.c


Ignore:
Timestamp:
2018-04-13T12:39:06Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
18b6a88
Parents:
f712a85
git-author:
Jiri Svoboda <jiri@…> (2018-04-12 17:38:04)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-13 12:39:06)
Message:

ccheck-fix a few files with for loops.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/vuhid/main.c

    rf712a85 r8ebe212  
    172172{
    173173        printf("Available devices:\n");
    174         for (vuhid_interface_t * *i = available_hid_interfaces; *i != NULL; ++i) {
     174        for (vuhid_interface_t **i = available_hid_interfaces; *i != NULL; ++i) {
    175175                printf("\t`%s'\t%s\n", (*i)->id, (*i)->name);
    176176        }
Note: See TracChangeset for help on using the changeset viewer.