Changeset 2752620b in mainline


Ignore:
Timestamp:
2018-01-31T03:08:09Z (6 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
14d789c
Parents:
07457d6
Message:

fix sample format typo

File:
1 edited

Legend:

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

    r07457d6 r2752620b  
    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.