1
1
Compiler warning that ret was used before it was assigned.  Since this
part of the code is not performance-critical, just throw in an extra
assignment and be done with it.
Этот коммит содержится в:
Jeff Squyres 2015-01-16 11:34:11 -08:00
родитель 66f6026214
Коммит f4693c9afd

Просмотреть файл

@ -1,6 +1,7 @@
/*
* Copyright (c) 2014 Mellanox Technologies, Inc.
* All rights reserved.
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -22,7 +23,7 @@ void oshmem_output_verbose(int level, int output_id, const char* prefix,
{
va_list args;
char *buff, *str;
int ret;
int ret = 0;
if (level < opal_output_get_verbosity(output_id)) {
UNREFERENCED_PARAMETER(ret);