]> git.eshelyaron.com Git - emacs.git/commitdiff
Use lisp type in log message (bug#28176)
authorAlan Third <alan@idiocy.org>
Wed, 23 Aug 2017 20:13:22 +0000 (21:13 +0100)
committerAlan Third <alan@idiocy.org>
Wed, 23 Aug 2017 20:13:22 +0000 (21:13 +0100)
* src/nsimage.m (ns_load_image): Use make_number on index.

src/nsimage.m

index 3c81dea67a90ddf0598970f53358f289174d4acb..ea2f1ec54acf70f40f86f7c33304e98604b39325 100644 (file)
@@ -108,7 +108,8 @@ ns_load_image (struct frame *f, struct image *img,
 
   if (![eImg setFrame: index])
     {
-      add_to_log ("Unable to set index %d for image %s", index, img->spec);
+      add_to_log ("Unable to set index %d for image %s",
+                  make_number (index), img->spec);
       return 0;
     }