# HG changeset patch # User Geoff Voelker # Date 912639629 0 # Node ID 119fd94ae5261dd27779d309b7973f522ef8800d # Parent a7dd4cded68c3f7bbbdc0f48621e69d13d3d92c1 (w32_last_error): Fix cut+paste error. diff -r a7dd4cded68c -r 119fd94ae526 src/w32fns.c --- a/src/w32fns.c Wed Dec 02 23:00:14 1998 +0000 +++ b/src/w32fns.c Wed Dec 02 23:00:29 1998 +0000 @@ -6899,12 +6899,6 @@ #undef abort void -/* For convenience when debugging. */ -int -w32_last_error() -{ - return GetLastError (); -} w32_abort() { int button; @@ -6928,3 +6922,9 @@ } } +/* For convenience when debugging. */ +int +w32_last_error() +{ + return GetLastError (); +}