From 83c75055bc8fc08b34422b2976d442f7f8127cc8 Mon Sep 17 00:00:00 2001 From: Geoff Voelker Date: Wed, 2 Dec 1998 23:00:29 +0000 Subject: [PATCH] (w32_last_error): Fix cut+paste error. --- src/w32fns.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/w32fns.c b/src/w32fns.c index c11c3d5c841..b501d19db2d 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -6899,12 +6899,6 @@ displayed according to the current fontset."); #undef abort void -/* For convenience when debugging. */ -int -w32_last_error() -{ - return GetLastError (); -} w32_abort() { int button; @@ -6928,3 +6922,9 @@ w32_abort() } } +/* For convenience when debugging. */ +int +w32_last_error() +{ + return GetLastError (); +} -- 2.39.5