mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 890037 - Remove extra space from the output of "thunderbird -version". r=bsmedberg
This commit is contained in:
parent
21d8425720
commit
2b129e9864
@ -1400,8 +1400,9 @@ static int MSCRTReportHook( int aReportType, char *aMessage, int *oReturnValue)
|
||||
static inline void
|
||||
DumpVersion()
|
||||
{
|
||||
printf("%s %s %s",
|
||||
gAppData->vendor ? gAppData->vendor : "", gAppData->name, gAppData->version);
|
||||
if (gAppData->vendor)
|
||||
printf("%s ", gAppData->vendor);
|
||||
printf("%s %s", gAppData->name, gAppData->version);
|
||||
if (gAppData->copyright)
|
||||
printf(", %s", gAppData->copyright);
|
||||
printf("\n");
|
||||
|
Loading…
Reference in New Issue
Block a user