about summary refs log tree commit diff stats
path: root/source_file.lua
diff options
context:
space:
mode:
Diffstat (limited to 'source_file.lua')
-rw-r--r--source_file.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/source_file.lua b/source_file.lua
index b0e26eb..dbb6f95 100644
--- a/source_file.lua
+++ b/source_file.lua
@@ -45,7 +45,7 @@ end
 
 function save_to_disk(State)
   local outfile = App.open_for_writing(App.save_dir..State.filename)
-  if outfile == nil then
+  if not outfile then
     error('failed to write to "'..State.filename..'"')
   end
   for _,line in ipairs(State.lines) do