Bug 890037 - Remove extra space from the output of "thunderbird -version". r=bsmedberg

This commit is contained in:
Suyash Agarwal 2013-07-18 16:29:17 -04:00
parent 3b848ad3cd
commit 2a3d3d167f

View File

@ -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");