Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/wavplay/drec.c

    rb6e481b r279f90f  
    4040#include <pcm/format.h>
    4141#include <stdio.h>
    42 #include <as.h>
     42#include <sys/mman.h>
    4343#include <inttypes.h>
    4444
     
    229229cleanup:
    230230        fclose(rec.file);
    231         as_area_destroy(rec.buffer.base);
     231        munmap(rec.buffer.base, rec.buffer.size);
    232232        audio_pcm_release_buffer(rec.device);
    233233close_session:
Note: See TracChangeset for help on using the changeset viewer.