From 96e8541cf35128c457390c17ba985fdfeb89b3f3 Mon Sep 17 00:00:00 2001 From: espie <> Date: Wed, 22 Aug 2012 08:56:46 +0000 Subject: [PATCH] hex constants unsigned, prevents some gcc warnings okay ratchov@ --- src/include/sndio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/sndio.h b/src/include/sndio.h index 071aa0d8..7e161bef 100644 --- a/src/include/sndio.h +++ b/src/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 * @@ -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 */ }; /*