kinect_upload_fw/endian.c: fix warning and rename a function
authorAntonio Ospite <ospite@studenti.unina.it>
Fri, 6 Dec 2013 16:36:12 +0000 (17:36 +0100)
committerAntonio Ospite <ospite@studenti.unina.it>
Fri, 6 Dec 2013 16:39:22 +0000 (17:39 +0100)
commit6028ad6e21fb273eb0aa5bb5bcb9d9a765a75db3
treeb8fa30ed2bf5817699c4de3836a0db318e100e45
parent61cf622dc616a3351f2abfb25d72d359bf4dfa0a
kinect_upload_fw/endian.c: fix warning and rename a function

Remove the bigend() function, it is never used and causes a compiler
warning:

  endian.c:10:12: warning: â€˜bigend’ defined but not used [-Wunused-function]
   static int bigend(void) {

Also rename the litend() function to little_endian(), there is no need
to use a short name in this case.
kinect_upload_fw/endian.c