adjust type of iterator after gl_pathc became a size_t

ok jca@
This commit is contained in:
jasper 2019-02-04 18:50:56 +00:00
parent 65ffc2c2a4
commit e9751e545f
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.13 2018/05/28 05:27:15 espie Exp $
# $OpenBSD: Makefile,v 1.14 2019/02/04 18:50:56 jasper Exp $
COMMENT-main = Tcl/Tk snack sound toolkit
COMMENT-python = Python bindings for Tcl/Tk snack sound toolkit
@ -9,7 +9,7 @@ PKGNAME-main = snack-${MODPY_EGG_VERSION}
PKGNAME-python = py-snack-${MODPY_EGG_VERSION}
CATEGORIES = audio
REVISION-main = 5
REVISION-main = 6
REVISION-python =2
HOMEPAGE = http://www.speech.kth.se/snack

View File

@ -947,7 +947,8 @@ SnackGetOutputDevices(char **arr, int n)
int
SnackGetInputDevices(char **arr, int n)
{
int i, j = 0;
size_t i;
int j = 0;
glob_t globt;
glob("/dev/audio*", 0, NULL, &globt);