changes to silent compiler warnings with 64bit systems.
diff --git a/lib/tftp.c b/lib/tftp.c
index 87e513e..0a1dc59 100644
--- a/lib/tftp.c
+++ b/lib/tftp.c
@@ -1035,7 +1035,7 @@
         case TFTP_EVENT_OACK:
           code = tftp_parse_option_ack(state,
                                        (const char *)state->rpacket.data+2,
-                                       state->rbytes-2);
+                                       (int)state->rbytes-2);
           if(code)
             return code;
           break;