core: Replace assert()s with pa_assert()s

Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
This commit is contained in:
Peter Meerwald 2014-11-09 17:49:54 +01:00
parent 59334021d3
commit 101092465d
7 changed files with 11 additions and 12 deletions

View file

@ -41,7 +41,7 @@ static int set_block(int fd, int blocking) {
int v;
assert(fd >= 0);
pa_assert(fd >= 0);
if ((v = fcntl(fd, F_GETFL)) < 0)
return -1;