diff options
author | Clay Smith <claysmith158@gmail.com> | 2023-02-15 06:11:13 -0600 |
---|---|---|
committer | Clay Smith <claysmith158@gmail.com> | 2023-02-15 06:11:13 -0600 |
commit | 4760458bad9546cc2329cee45a844e4e450ccd5d (patch) | |
tree | b7d9a1c09b501e18761da9775a23e87e65a56176 | |
parent | ed0ba87ea8c7ce0b7b97ca2b7da0cd9a7571c9eb (diff) |
.
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | main.c | 4 |
2 files changed, 1 insertions, 5 deletions
@@ -1,5 +1,5 @@ CC = gcc -ALL_FLAGS = -g +ALL_FLAGS = -g -Wall main: main.c handle_devices.c ${CC} ${ALL_FLAGS} main.c handle_devices.c -o devout @@ -32,10 +32,6 @@ int main(int argc, char** argv) //fprintf(stderr, "\n\nIf no devices are listed above, then the program failed to find an acceptable device connected to the computer.\n\n"); } else { - struct input_event event1, event2, event3, event4; - int ievt_size = sizeof(struct input_event); - size_t start_sec; - switch (choice) { case STEAM_BIT: { |