Commit b9ccd710 by Robert Dewar Committed by Arnaud Charlet

s-fileio.adb: Minor reformatting

2008-08-20  Robert Dewar  <dewar@adacore.com>

	* s-fileio.adb: Minor reformatting

From-SVN: r139298
parent c4075a15
......@@ -1001,11 +1001,13 @@ package body System.File_IO is
-- Non-zero when the given errno value indicates a non-
-- existing file.
pragma Import (C, Is_File_Not_Found_Error,
"__gnat_is_file_not_found_error");
pragma Import
(C, Is_File_Not_Found_Error,
"__gnat_is_file_not_found_error");
begin
if Is_File_Not_Found_Error (Cint (System.OS_Lib.Errno))
/= 0
if
Is_File_Not_Found_Error (Cint (System.OS_Lib.Errno)) /= 0
then
raise Name_Error;
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment