Change return value of 'ecma_ref_ecma_string' to void

JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
László Langó
2016-06-14 15:00:12 +02:00
parent 0daeb2f942
commit 8453a9ade8
17 changed files with 49 additions and 40 deletions
+3 -1
View File
@@ -357,7 +357,9 @@ jerry_acquire_string (jerry_string_t *string_p) /**< pointer passed to function
{
jerry_assert_api_available ();
return ecma_ref_ecma_string (string_p);
ecma_ref_ecma_string (string_p);
return string_p;
} /* jerry_acquire_string */
/**