Fixed 'C4028' compiler warnings. (#2881)

The formal paramters of some function definitions were different
from the declarations.

JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
László Langó
2019-05-21 09:17:10 +02:00
committed by GitHub
parent 0ba2d17faf
commit 8e39fbc46f
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -3309,7 +3309,7 @@ jerry_value_is_dataview (const jerry_value_t value) /**< value to check if it is
* TypeError if the object is not a DataView.
*/
jerry_value_t
jerry_get_dataview_buffer (jerry_value_t value, /**< DataView to get the arraybuffer from */
jerry_get_dataview_buffer (const jerry_value_t value, /**< DataView to get the arraybuffer from */
jerry_length_t *byte_offset, /**< [out] byteOffset property */
jerry_length_t *byte_length) /**< [out] byteLength property */
{