int main(int argc, char** argv) {
char default_filename[] = "firmware.bin";
char* filename = default_filename;
- int res = 0;
+ int ret = 0;
if (argc == 2) {
filename = argv[1];
dev = libusb_open_device_with_vid_pid(NULL, KINECT_AUDIO_VID, KINECT_AUDIO_PID);
if (dev == NULL) {
fprintf(stderr, "Couldn't open device.\n");
- res = -ENODEV;
+ ret = -ENODEV;
goto fail_libusb_open;
}
current_configuration = -1;
libusb_get_configuration(dev, ¤t_configuration);
if (current_configuration != KINECT_AUDIO_CONFIGURATION) {
- res = -ENODEV;
+ ret = -ENODEV;
goto cleanup;
}
- res = upload_firmware(fw);
+ ret = upload_firmware(fw);
// Now the device reenumerates.
cleanup:
fail_libusb_open:
libusb_exit(NULL);
fclose(fw);
- return res;
+ return ret;
}