Changeset 14d789c in mainline


Ignore:
Timestamp:
2018-01-31T06:48:29Z (6 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2660ee3, 2b3dd78
Parents:
07457d6 (diff), 2752620b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jakub Jermář <jakub@…> (2018-01-31 06:48:29)
git-committer:
GitHub <noreply@…> (2018-01-31 06:48:29)
Message:

Merge pull request #18 from jh-cg/fix-sample-format

fix sample format typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/pcm/include/pcm/sample_format.h

    r07457d6 r14d789c  
    184184        switch(format) {
    185185        case PCM_SAMPLE_UINT8:
    186                 return "8 bit unsinged";
     186                return "8 bit unsigned";
    187187        case PCM_SAMPLE_SINT8:
    188                 return "8 bit singed";
     188                return "8 bit signed";
    189189        case PCM_SAMPLE_UINT16_LE:
    190190                return "16 bit unsigned(LE)";
    191191        case PCM_SAMPLE_SINT16_LE:
    192                 return "16 bit singed(LE)";
     192                return "16 bit signed(LE)";
    193193        case PCM_SAMPLE_UINT16_BE:
    194194                return "16 bit unsigned(BE)";
Note: See TracChangeset for help on using the changeset viewer.