diff --git a/src/docbook/en-US/module/start.xml b/src/docbook/en-US/module/start.xml
index 492586a969..73a86f4aa7 100644
--- a/src/docbook/en-US/module/start.xml
+++ b/src/docbook/en-US/module/start.xml
@@ -337,7 +337,7 @@ public class TimeServerHandler extends &SimpleChannelHandler; {
&Channel; ch = e.getChannel();
&ChannelBuffer; time = &ChannelBuffers;.buffer(4);
- time.writeInt(System.currentTimeMillis() / 1000);
+ time.writeInt((int) (System.currentTimeMillis() / 1000));
&ChannelFuture; f = ch.write(time);