~ubuntu-branches/ubuntu/utopic/openal-soft/utopic-proposed

« back to all changes in this revision

Viewing changes to OpenAL32/alThunk.c

  • Committer: Package Import Robot
  • Author(s): Bret Curtis
  • Date: 2014-07-16 08:35:25 UTC
  • mfrom: (0.2.10)
  • Revision ID: package-import@ubuntu.com-20140716083525-5rldbuk4mo211l1a
Tags: 1:1.15.1-1
* Added openal-info binary. (Closes: 659198)
* Added makehrtf binary.
* Added 'audio' to short description. (Closes: 598064) 
* Added FLAGS fixes for cmake in rules for hardening.
* Added man pages for the two binaries.
* New upstream release. (Closes: 731159)
* Removed libsndio-dlopen-change.patch, no longer required.
* Removed no-fpuextended.patch, macros no longer used.
* Removed need for lintian overrides.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
    if(!NewList)
67
67
    {
68
68
        WriteUnlock(&ThunkLock);
69
 
        ERR("Realloc failed to increase to %u enties!\n", ThunkArraySize*2);
 
69
        ERR("Realloc failed to increase to %u entries!\n", ThunkArraySize*2);
70
70
        return AL_OUT_OF_MEMORY;
71
71
    }
72
72
    memset(&NewList[ThunkArraySize], 0, ThunkArraySize*sizeof(*ThunkArray));