Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bugzilla#16156] Switch Platform: and Copyright: entry orders #162

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ attribute_hidden void PrintVersion_part_1(char *s, size_t len)
snprintf(nick, 128, " -- \"%s\"", R_NICK);
strcat(s, nick);
}
SPRINTF_2("\nCopyright (C) %s The R Foundation for Statistical Computing\n",
SPRINTF_2("\nPlatform: %s", R_PLATFORM);
SPRINTF_2("\nCopyright (C) %s The R Foundation for Statistical Computing",
R_YEAR);
SPRINTF_2("Platform: %s", R_PLATFORM);
#ifdef R_ARCH
if(strlen(R_ARCH)) { SPRINTF_2("/%s", R_ARCH); }
#endif
Expand Down
Loading