summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/support/cltkTimer.c
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2010-01-22 12:48:24 +0000
committerDamien Doligez <damien.doligez-inria.fr>2010-01-22 12:48:24 +0000
commit04b1656222698bd7e92f213e9a718b7a4185643a (patch)
tree6186d1ba1e00adb1232908f95cb92c299902a943 /otherlibs/labltk/support/cltkTimer.c
parentbdc0fadee2dc9669818955486b4c3497016edda5 (diff)
clean up spaces and tabs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9547 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/support/cltkTimer.c')
-rw-r--r--otherlibs/labltk/support/cltkTimer.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/otherlibs/labltk/support/cltkTimer.c b/otherlibs/labltk/support/cltkTimer.c
index 21f1b1588..e0635e850 100644
--- a/otherlibs/labltk/support/cltkTimer.c
+++ b/otherlibs/labltk/support/cltkTimer.c
@@ -32,8 +32,8 @@ void TimerProc (ClientData clientdata)
CAMLprim value camltk_add_timer(value milli, value cbid)
{
CheckInit();
- /* look at tkEvent.c , Tk_Token is an int */
- return (Val_int(Tcl_CreateTimerHandler(Int_val(milli), TimerProc,
+ /* look at tkEvent.c , Tk_Token is an int */
+ return (Val_int(Tcl_CreateTimerHandler(Int_val(milli), TimerProc,
(ClientData) (Int_val(cbid)))));
}
@@ -42,4 +42,3 @@ CAMLprim value camltk_rem_timer(value token)
Tcl_DeleteTimerHandler((Tcl_TimerToken) Int_val(token));
return Val_unit;
}
-