MaskRay added inline comments.
================ Comment at: lldb/source/Plugins/ObjectFile/Minidump/MinidumpFileBuilder.cpp:120 + if (error.Fail()) { + error.SetErrorString("Unable to convert the csd string to UTF16."); + return error; ---------------- https://llvm.org/docs/CodingStandards.html#error-and-warning-messages Don't capitalize messages and don't append `.` ================ Comment at: lldb/source/Plugins/ObjectFile/Minidump/MinidumpFileBuilder.cpp:732 + error.SetErrorStringWithFormat( + "Unable to write the header. (written %ld/%ld).", bytes_written, + header_size); ---------------- The format specifiers are wrong. size_t should use %zd and one uint64_t below should use PRIu64. I have fixed them. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D108233/new/ https://reviews.llvm.org/D108233 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits