wmtime: Remove unused variables.
This patch removes the unused variables nexttime and old_time_struct to avoid a warning when -Wunused-but-set-variable is passed.
This commit is contained in:
parent
9005023ad2
commit
d6ef017638
|
@ -231,11 +231,9 @@ void wmtime_routine(int argc, char **argv) {
|
||||||
int but_stat = -1;
|
int but_stat = -1;
|
||||||
|
|
||||||
struct tm *time_struct;
|
struct tm *time_struct;
|
||||||
struct tm old_time_struct;
|
|
||||||
|
|
||||||
long starttime;
|
long starttime;
|
||||||
long curtime;
|
long curtime;
|
||||||
long nexttime;
|
|
||||||
|
|
||||||
char *conffile = NULL;
|
char *conffile = NULL;
|
||||||
|
|
||||||
|
@ -273,7 +271,6 @@ void wmtime_routine(int argc, char **argv) {
|
||||||
AddMouseRegion(1, 5, 5, 58, 46);
|
AddMouseRegion(1, 5, 5, 58, 46);
|
||||||
|
|
||||||
starttime = time(0);
|
starttime = time(0);
|
||||||
nexttime = starttime + 1;
|
|
||||||
|
|
||||||
curtime = time(0);
|
curtime = time(0);
|
||||||
time_struct = localtime(&curtime);
|
time_struct = localtime(&curtime);
|
||||||
|
@ -283,7 +280,6 @@ void wmtime_routine(int argc, char **argv) {
|
||||||
|
|
||||||
waitpid(0, NULL, WNOHANG);
|
waitpid(0, NULL, WNOHANG);
|
||||||
|
|
||||||
old_time_struct = *time_struct;
|
|
||||||
time_struct = localtime(&curtime);
|
time_struct = localtime(&curtime);
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue