From 8ed254f0c06c9432fcf20b5beecf312edb4fad67 Mon Sep 17 00:00:00 2001 From: misson20000 Date: Fri, 14 Sep 2018 23:50:27 -0700 Subject: [PATCH] small platform_switch indentation fixups --- frontend/drivers/platform_switch.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/drivers/platform_switch.c b/frontend/drivers/platform_switch.c index 7afdc9d365..953739aa88 100644 --- a/frontend/drivers/platform_switch.c +++ b/frontend/drivers/platform_switch.c @@ -431,16 +431,16 @@ char *realpath(const char *name, char *resolved) if (name == NULL) { /* As per Single Unix Specification V2 we must return an error if - either parameter is a null pointer. We extend this to allow - the RESOLVED parameter to be NULL in case the we are expected to - allocate the room for the return value. */ + either parameter is a null pointer. We extend this to allow + the RESOLVED parameter to be NULL in case the we are expected to + allocate the room for the return value. */ return NULL; } if (name[0] == '\0') { /* 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; }