Skip to content

Commit

Permalink
Fix [SIGAR-253]- Remove a space from else if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoldman committed Aug 17, 2015
1 parent 48ba690 commit 7a6aefc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/os/win32/win32_sigar.c
Original file line number Diff line number Diff line change
Expand Up @@ -3850,7 +3850,7 @@ int sigar_os_sys_info_get(sigar_t *sigar,
vendor_version = "2008";
code_name = "Longhorn Server";
}
else if (version.dwMinorVersion == 2 || version.dwMinorVersion == 3) {
else if (version.dwMinorVersion == 2 || version.dwMinorVersion == 3) {
vendor_name = "Windows 2012";
vendor_version = "2012";
code_name = "Windows Server 8";
Expand Down

0 comments on commit 7a6aefc

Please sign in to comment.