Skip to content

Commit

Permalink
try no op
Browse files Browse the repository at this point in the history
JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi mate.tokodi@szteszoftver.hu
  • Loading branch information
matetokodi committed May 16, 2024
1 parent 2a67b71 commit 78fa141
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jerry-core/ecma/base/ecma-helpers-number.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,9 @@ ecma_number_remainder (ecma_number_t left_num, /**< left operand */

if (ecma_number_is_zero (r) && ecma_number_is_negative (left_num))
{
#ifdef __APPLE__
printf("%c", 0);
#ifndef __APPLE__
// printf("%c", 0);
(void) 0;
#endif
r = -r;
}
Expand Down

0 comments on commit 78fa141

Please sign in to comment.