Skip to content
Snippets Groups Projects
Commit 51ec106f authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Avoid a "Returning a void expression" warning.

Rev: lib/modules/Calendar.pmod/Timezone.pmod:1.7
parent 69bb4072
No related branches found
No related tags found
No related merge requests found
...@@ -906,7 +906,7 @@ class Runtime_timezone_compiler ...@@ -906,7 +906,7 @@ class Runtime_timezone_compiler
lambda(string fn) lambda(string fn)
{ {
return Stdio.read_bytes(base_path+fn) || return Stdio.read_bytes(base_path+fn) ||
error("Failed to open file %O\n",base_path+fn); (error("Failed to open file %O\n",base_path+fn), "");
})*"\n"; })*"\n";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment