فهرست منبع

fix #9316: when converting binary data to hex, also print the leading 0's

Alex
Alexander Neundorf 16 سال پیش
والد
کامیت
91fec6d89c
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Source/cmFileCommand.cxx

+ 1 - 1
Source/cmFileCommand.cxx

@@ -305,7 +305,7 @@ bool cmFileCommand::HandleReadCommand(std::vector<std::string> const& args)
     while((sizeLimit != 0) && (c = file.get(), file))
       {
       char hex[4];
-      sprintf(hex, "%x", c&0xff);
+      sprintf(hex, "%.2x", c&0xff);
       output += hex;
       if (sizeLimit > 0)
         {