File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ char jerry_extension_characters_buffer[CONFIG_EXTENSION_CHAR_BUFFER_SIZE];
68
68
69
69
#ifdef JERRY_ENABLE_LOG
70
70
int jerry_debug_level = 0 ;
71
- FILE *jerry_log_file = nullptr ;
71
+ FILE *jerry_log_file = NULL ;
72
72
#endif
73
73
74
74
/* *
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ main (int argc,
132
132
jerry_flag_t flags = JERRY_FLAG_EMPTY;
133
133
134
134
#ifdef JERRY_ENABLE_LOG
135
- const char *log_file_name = nullptr ;
135
+ const char *log_file_name = NULL ;
136
136
#endif /* JERRY_ENABLE_LOG */
137
137
for (i = 1 ; i < argc; i++)
138
138
{
@@ -222,7 +222,7 @@ main (int argc,
222
222
if (log_file_name)
223
223
{
224
224
jerry_log_file = fopen (log_file_name, " w" );
225
- if (jerry_log_file == nullptr )
225
+ if (jerry_log_file == NULL )
226
226
{
227
227
JERRY_ERROR_MSG (" Failed to open log file: %s\n " , log_file_name);
228
228
return JERRY_STANDALONE_EXIT_CODE_FAIL;
@@ -259,7 +259,7 @@ main (int argc,
259
259
if (jerry_log_file && jerry_log_file != stdout)
260
260
{
261
261
fclose (jerry_log_file);
262
- jerry_log_file = nullptr ;
262
+ jerry_log_file = NULL ;
263
263
}
264
264
#endif /* JERRY_ENABLE_LOG */
265
265
You can’t perform that action at this time.
0 commit comments