From: Haritha D <harithamma.d@xxxxxxx> This PR has fixes to enable build on z/OS Signed-off-by: Harithamma D <harithamma.d@xxxxxxx> --- convert.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/convert.c b/convert.c index 78403de422d..ef44e6429da 100644 --- a/convert.c +++ b/convert.c @@ -1326,13 +1326,10 @@ static const char* get_platform(void) { { int index=0; result = (char *)malloc(strlen(uname_info.sysname)+1); - while(index <= strlen(uname_info.sysname)) + while(result[index] = uname_info.sysname[index]) { - *result = uname_info.sysname[index]; - ++result; - ++index; + index++; } - *result = '\0'; } #endif @@ -1340,8 +1337,7 @@ static const char* get_platform(void) { if (!strcmp(uname_info.sysname, "OS/390")) result="zos"; #endif - - return result; + return (char*)result; } -- gitgitgadget