From: Antonio Ospite Date: Fri, 6 Dec 2013 16:36:12 +0000 (+0100) Subject: kinect_upload_fw/endian.c: fix warning and rename a function X-Git-Tag: v0.3~4 X-Git-Url: https://git.ao2.it/kinect-audio-setup.git/commitdiff_plain/6028ad6e21fb273eb0aa5bb5bcb9d9a765a75db3?hp=6028ad6e21fb273eb0aa5bb5bcb9d9a765a75db3 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. ---