summaryrefslogtreecommitdiffstats
path: root/generic/tkUndo.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-02-13 00:02:23 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-02-13 00:02:23 (GMT)
commitc2ce98d7781db329352d954fd196b04b564b3219 (patch)
treef3e3af9c92d23a443f39a09964062488e21d79b5 /generic/tkUndo.c
parentc70bcd3f6a2b769723342a9f52290dd6f44373d1 (diff)
downloadtk-c2ce98d7781db329352d954fd196b04b564b3219.zip
tk-c2ce98d7781db329352d954fd196b04b564b3219.tar.gz
tk-c2ce98d7781db329352d954fd196b04b564b3219.tar.bz2
Fix minor K&R-ism
Diffstat (limited to 'generic/tkUndo.c')
-rw-r--r--generic/tkUndo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkUndo.c b/generic/tkUndo.c
index 27a31ce..a540260 100644
--- a/generic/tkUndo.c
+++ b/generic/tkUndo.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkUndo.c,v 1.10 2006/01/12 23:29:36 a_kovalenko Exp $
+ * RCS: @(#) $Id: tkUndo.c,v 1.11 2007/02/13 00:02:23 dkf Exp $
*/
#include "tkUndo.h"
@@ -519,8 +519,8 @@ TkUndoInsertUndoSeparator(
*/
int
-TkUndoRevert(stack)
- TkUndoRedoStack *stack;
+TkUndoRevert(
+ TkUndoRedoStack *stack)
{
TkUndoAtom *elem;