]> granicus.if.org Git - imagemagick/commitdiff
modify the variable name
authorliclicli <lic92@live.com>
Wed, 13 Sep 2017 12:02:54 +0000 (20:02 +0800)
committerDirk Lemstra <dlemstra@users.noreply.github.com>
Wed, 13 Sep 2017 12:18:45 +0000 (14:18 +0200)
MagickWand/wand.c

index 9db81255e85102f527ca81cc535affe5b5290ffe..13537cbf1d99a408e77823fb187535bcfaf4b7c3 100644 (file)
@@ -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);
 }
 \f
 /*