Removed unneeded inline comments around the Win32 error-formatting fallback in errorstring() and simplified matching block-closing lines, without changing behavior.

This commit is contained in:
2026-02-25 02:37:08 -07:00
parent 6a02f578b6
commit 3cff6742f5

View File

@@ -169,13 +169,12 @@ errorstring (int err)
return tbuf;
}
}
} /* ! if (osvi.dwMajorVersion >= 5) */
}
/* fallback to error number */
sprintf (tbuf, "%s %d", _("Error"), err);
return tbuf;
} /* ! if (err >= WSABASEERR) */
#endif /* ! WIN32 */
}
#endif
return strerror (err);
}