From: Mark Andrews Date: Fri, 25 Jul 2003 05:02:54 +0000 (+0000) Subject: missing '*' X-Git-Tag: v9.2.3rc2~9^2~28 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=d5d2dca925fc17d33b17de1aa07de8f3649121aa;p=thirdparty%2Fbind9.git missing '*' --- diff --git a/lib/isc/include/isc/refcount.h b/lib/isc/include/isc/refcount.h index 1b4e08ad82a..c3d992100b3 100644 --- a/lib/isc/include/isc/refcount.h +++ b/lib/isc/include/isc/refcount.h @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: refcount.h,v 1.4 2003/07/24 06:41:20 marka Exp $ */ +/* $Id: refcount.h,v 1.5 2003/07/25 05:02:54 marka Exp $ */ #ifndef ISC_REFCOUNT_H #define ISC_REFCOUNT_H 1 @@ -111,7 +111,7 @@ typedef struct isc_refcount { #define isc_refcount_increment(rp, tp) \ do { \ - unsigned int _tmp = (unsigned int *)(tp); \ + unsigned int *_tmp = (unsigned int *)(tp); \ LOCK(&(rp)->lock); \ REQUIRE((rp)->refs > 0); \ ++((rp)->refs); \ @@ -122,7 +122,7 @@ typedef struct isc_refcount { #define isc_refcount_decrement(rp, tp) \ do { \ - unsigned int _tmp = (unsigned int *)(tp); \ + unsigned int *_tmp = (unsigned int *)(tp); \ LOCK(&(rp)->lock); \ REQUIRE((rp)->refs > 0); \ --((rp)->refs); \