Changeset 05b59393 in mainline for uspace/lib/hound/src/client.c


Ignore:
Timestamp:
2017-10-04T18:02:14Z (7 years ago)
Author:
jzr <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c9e88da
Parents:
0b2d369
Message:

Fix a couple of benign clang warnings.
No change in semantics.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/hound/src/client.c

    r0b2d369 r05b59393  
    4848
    4949/** Stream structure */
    50 typedef struct hound_stream {
     50struct hound_stream {
    5151        /** link in context's list */
    5252        link_t link;
     
    5959        /** Stream flags */
    6060        int flags;
    61 } hound_stream_t;
     61};
    6262
    6363/**
     
    7272
    7373/** Hound client context structure */
    74 typedef struct hound_context {
     74struct hound_context {
    7575        /** Audio session */
    7676        hound_sess_t *session;
     
    8989        /** Assigned context id */
    9090        hound_context_id_t id;
    91 } hound_context_t;
     91};
    9292
    9393/**
Note: See TracChangeset for help on using the changeset viewer.