aboutsummaryrefslogtreecommitdiff
path: root/jim-win32.c
diff options
context:
space:
mode:
authorantirez <antirez>2005-03-04 15:37:54 +0000
committerantirez <antirez>2005-03-04 15:37:54 +0000
commit8c274cd82000026b9c1ad0e0e9ad5378f2c0d800 (patch)
treec7d96ca9f8f655811ec192feee0eed75d18ee608 /jim-win32.c
parent5817ec309eec01ffedc66cbc58cbcaf461b230da (diff)
downloadjimtcl-8c274cd82000026b9c1ad0e0e9ad5378f2c0d800.zip
jimtcl-8c274cd82000026b9c1ad0e0e9ad5378f2c0d800.tar.gz
jimtcl-8c274cd82000026b9c1ad0e0e9ad5378f2c0d800.tar.bz2
JIM_NOTUSED moved after var declarations blocks.
Diffstat (limited to 'jim-win32.c')
-rw-r--r--jim-win32.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/jim-win32.c b/jim-win32.c
index 600b4e7..4080b86 100644
--- a/jim-win32.c
+++ b/jim-win32.c
@@ -2,7 +2,7 @@
*
* Copyright (C) 2005 Pat Thoyts <patthoyts@users.sourceforge.net>
*
- * $Id: jim-win32.c,v 1.15 2005/03/04 12:32:21 antirez Exp $
+ * $Id: jim-win32.c,v 1.16 2005/03/04 15:37:54 antirez Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -324,12 +324,12 @@ Win32_GetTickCount(Jim_Interp *interp, int objc, Jim_Obj *const *objv)
static int
Win32_GetSystemTime(Jim_Interp *interp, int objc, Jim_Obj *const *objv)
{
- JIM_NOTUSED(objc);
- JIM_NOTUSED(objv);
-
Jim_Obj *a[16];
size_t n = 0;
SYSTEMTIME t;
+ JIM_NOTUSED(objc);
+ JIM_NOTUSED(objv);
+
GetSystemTime(&t);
#define JIMADD(name) \