From 5b56900e2b2e08631f62f073107499985730ceba Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Tue, 4 Jun 2019 21:29:14 +0200 Subject: [PATCH] Rename unused field The flag is used only in the server_start() implementation, there is no need to store it in the structure. --- app/src/server.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/server.h b/app/src/server.h index 0c8443bb..843258be 100644 --- a/app/src/server.h +++ b/app/src/server.h @@ -16,7 +16,6 @@ struct server { uint16_t local_port; bool tunnel_enabled; bool tunnel_forward; // use "adb forward" instead of "adb reverse" - bool send_frame_meta; // request frame PTS to be able to record properly }; #define SERVER_INITIALIZER { \ @@ -28,7 +27,6 @@ struct server { .local_port = 0, \ .tunnel_enabled = false, \ .tunnel_forward = false, \ - .send_frame_meta = false, \ } // init default values