objconv icon indicating copy to clipboard operation
objconv copied to clipboard

gcc compilation error

Open pierrehpezier opened this issue 8 years ago • 0 comments

src/coff.cpp:142:1: error: narrowing conversion of ‘2147483648’ from ‘unsigned int’ to ‘int’ inside { } [-Wnarrowing]

The correct fix:

git diff diff --git a/src/maindef.h b/src/maindef.h index d95742d..d75aaa5 100644 --- a/src/maindef.h +++ b/src/maindef.h @@ -104,7 +104,7 @@ static inline uint32 HighDWord (uint64 x) {

// Structure of integers and char *, used for tables of text strings struct SIntTxt {

  • int a;
  • unsigned int a;^M const char * b; };

pierrehpezier avatar Nov 22 '17 13:11 pierrehpezier