small platform_switch indentation fixups

This commit is contained in:
misson20000 2018-09-14 23:50:27 -07:00
parent 7072bbb829
commit 8ed254f0c0

View File

@ -431,16 +431,16 @@ char *realpath(const char *name, char *resolved)
if (name == NULL) if (name == NULL)
{ {
/* As per Single Unix Specification V2 we must return an error if /* As per Single Unix Specification V2 we must return an error if
either parameter is a null pointer. We extend this to allow either parameter is a null pointer. We extend this to allow
the RESOLVED parameter to be NULL in case the we are expected to the RESOLVED parameter to be NULL in case the we are expected to
allocate the room for the return value. */ allocate the room for the return value. */
return NULL; return NULL;
} }
if (name[0] == '\0') if (name[0] == '\0')
{ {
/* As per Single Unix Specification V2 we must return an error if /* As per Single Unix Specification V2 we must return an error if
the name argument points to an empty string. */ the name argument points to an empty string. */
return NULL; return NULL;
} }