From: liclicli Date: Wed, 13 Sep 2017 12:02:54 +0000 (+0800) Subject: modify the variable name X-Git-Tag: 7.0.7-3~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d97bd971754c61e51d00ef345a84f94920416c91;p=imagemagick modify the variable name --- diff --git a/MagickWand/wand.c b/MagickWand/wand.c index 9db81255e..13537cbf1 100644 --- a/MagickWand/wand.c +++ b/MagickWand/wand.c @@ -75,7 +75,7 @@ WandExport size_t AcquireWandId(void) { static size_t id = 0; - size_t nID = 0; + size_t wand_id = 0; if (wand_semaphore == (SemaphoreInfo *) NULL) ActivateSemaphoreInfo(&wand_semaphore); LockSemaphoreInfo(wand_semaphore); @@ -85,9 +85,9 @@ WandExport size_t AcquireWandId(void) id++; (void) AddValueToSplayTree(wand_ids,(const void *) id,(const void *) id); instantiate_wand=MagickTrue; - nID = id; + wand_id = id; UnlockSemaphoreInfo(wand_semaphore); - return(nID); + return(wand_id); } /*