summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2012-08-22 08:56:47 +0000
committerMarc Espie <espie@cvs.openbsd.org>2012-08-22 08:56:47 +0000
commiteea67097d058cefed971d2057ac1dd3ef0cef53a (patch)
tree417f8fab6665cf76b4d8b168da30add704df5e37
parent8c9e3d407da3b79ec776ef4488905edbc50c651e (diff)
hex constants unsigned, prevents some gcc warnings
okay ratchov@
-rw-r--r--include/sndio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sndio.h b/include/sndio.h
index 071aa0d8a86..7e161bef455 100644
--- a/include/sndio.h
+++ b/include/sndio.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sndio.h,v 1.7 2012/07/08 17:55:50 ratchov Exp $ */
+/* $OpenBSD: sndio.h,v 1.8 2012/08/22 08:56:46 espie Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -51,7 +51,7 @@ struct sio_par {
unsigned int round; /* optimal bufsz divisor */
unsigned int appbufsz; /* minimum buffer size */
int __pad[3]; /* for future use */
- int __magic; /* for internal/debug purposes only */
+ unsigned int __magic; /* for internal/debug purposes only */
};
/*