[Bf-blender-cvs] [52c356c1998] blender-v2.83-release: Cleanup wrong format specifier in a debug printf.

Bastien Montagne noreply at git.blender.org
Mon May 25 17:50:36 CEST 2020


Commit: 52c356c1998f0eea7e45ef53c4bf3c1e36eff9ef
Author: Bastien Montagne
Date:   Mon May 25 17:49:58 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rB52c356c1998f0eea7e45ef53c4bf3c1e36eff9ef

Cleanup wrong format specifier in a debug printf.

===================================================================

M	source/blender/blenloader/intern/readfile.c

===================================================================

diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 22862fc1d0d..5511a27eba9 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -9638,7 +9638,7 @@ static bool read_libblock_undo_restore(
   }
 
   /* Restore local datablocks. */
-  DEBUG_PRINTF("UNDO: read %s (uuid %d) -> ", id->name, id->session_uuid);
+  DEBUG_PRINTF("UNDO: read %s (uuid %u) -> ", id->name, id->session_uuid);
 
   ID *id_old = NULL;
   const bool do_partial_undo = (fd->skip_flags & BLO_READ_SKIP_UNDO_OLD_MAIN) == 0;



More information about the Bf-blender-cvs mailing list