We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4773126 commit ba4c1b1Copy full SHA for ba4c1b1
src/command.c
@@ -4141,8 +4141,9 @@ static void perform_ver(const char *arg)
4141
if ((_stubinfo->stubinfo_ver >> 16) == 0)
4142
printf(" stubless build, loader version %i\n", _stubinfo->stubinfo_ver);
4143
else
4144
- printf(" stub version %i, loader version %i\n",
4145
- _stubinfo->stubinfo_ver >> 16,
+ printf(" stub version %i.%i, loader version %i\n",
+ _stubinfo->stubinfo_ver >> 24,
4146
+ (_stubinfo->stubinfo_ver >> 16) & 0xff,
4147
_stubinfo->stubinfo_ver & 0xffff);
4148
#endif
4149
if (REV_ID[0])
0 commit comments