ao-tools: Fix warnings in ao-tools
[fw/altos] / ao-tools / ao-sky-flash / sky_bin.c
index 04cfec35794899a9e7a800480e3aee9df0556b75..2f7719ff97fc4913013b22ebacb099f943ea28f7 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -47,7 +48,7 @@ skytraq_send_bin(int fd, const char *filename)
        size = ftell(file);
        rewind(file);
 
-       sprintf(message, "BINSIZE = %d Checksum = %d Loopnumber = %d ", size, cksum, 1);
+       sprintf(message, "BINSIZE = %ld Checksum = %d Loopnumber = %d ", size, cksum, 1);
 
        ret = skytraq_cmd_wait(fd, message, strlen(message) + 1, "OK", 20000);
        if (ret < 0)