|
From: Kouhei S. <nul...@cl...> - 2013-11-17 08:16:42
|
Kouhei Sutou 2013-11-17 17:16:15 +0900 (Sun, 17 Nov 2013) New Revision: 43508b1f59147b6adfe189de9ec71a71c8e0aa84 https://github.com/clear-code/cutter/commit/43508b1f59147b6adfe189de9ec71a71c8e0aa84 Message: Use "%#" for adding prefix ("0x") that describes base Modified files: cutter/cut-elf-loader.c Modified: cutter/cut-elf-loader.c (+1 -1) =================================================================== --- cutter/cut-elf-loader.c 2013-11-14 00:02:56 +0900 (d1f7c44) +++ cutter/cut-elf-loader.c 2013-11-17 17:16:15 +0900 (29507db) @@ -210,7 +210,7 @@ cut_elf_loader_is_elf (CutELFLoader *loader) memcpy(&type, priv->content + sizeof(ident), sizeof(type)); if (type != ET_DYN) { - g_warning("not dynamic library: 0x%x", type); + g_warning("not dynamic library: %#x", type); g_free(priv->content); priv->content = NULL; } |