usr/src/cmd/rad/mod/test-compat-cnew/mod_test_compat_cnew.c
changeset 843 8d361501a790
parent 842 abc3d63bd4da
child 853 e2d9352738a7
--- a/usr/src/cmd/rad/mod/test-compat-cnew/mod_test_compat_cnew.c	Sun Apr 15 13:25:07 2012 -0400
+++ b/usr/src/cmd/rad/mod/test-compat-cnew/mod_test_compat_cnew.c	Sun Apr 15 13:51:55 2012 -0400
@@ -229,9 +229,9 @@
 api_CompatTest_invoke_retvalTest(rad_instance_t *inst, adr_method_t *meth,
     data_t **ret, data_t **args, int count, data_t **error)
 {
-	/* 
-	 * Method with non-nullable arg, 
-	 * non-nullable return value (was nullable) 
+	/*
+	 * Method with non-nullable arg,
+	 * non-nullable return value (was nullable)
 	 */
 	const char *s = data_to_string(args[0]);
 	*ret = data_new_string(s, lt_copy);
@@ -243,9 +243,9 @@
 api_CompatTest_invoke_argvalTest(rad_instance_t *inst, adr_method_t *meth,
     data_t **ret, data_t **args, int count, data_t **error)
 {
-	/* 
-	 * Method with nullable arg (was non-nullable), 
-	 * non-nullable return value 
+	/*
+	 * Method with nullable arg (was non-nullable),
+	 * non-nullable return value
 	 */
 	if (args[0] != NULL) {
 		const char *s = data_to_string(args[0]);