Hi!
Following patch adds "return NULL;" to the function returning void* in math
float tests. This change silences compiler warnings.

Signed-off-by: Cyril Hrubis [email protected]

-- 
Cyril Hrubis
[email protected]
Index: ltp-full-20100430/testcases/misc/math/float/main.c
===================================================================
--- ltp-full-20100430.orig/testcases/misc/math/float/main.c
+++ ltp-full-20100430/testcases/misc/math/float/main.c
@@ -393,7 +393,9 @@ static void *handle_signals (void *arg)
 		default:
 			exit (-1);
 		}
-	}while (TRUE);
+	} while (TRUE);
+
+	return NULL;
 }
 /*---------------------------------------------------------------------+
 |                               error ()                               |
------------------------------------------------------------------------------

_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to