git: 9front

Download patch

ref: 6ff904abe3e2e7a295556cdfc1547229e3aeb554
parent: 46bbfc8734878d6331bad48a35677c5e5b14a950
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Nov 15 23:24:14 EST 2024

sdodin: fix set but not used warning

--- a/sys/src/9/pc/sdodin.c
+++ b/sys/src/9/pc/sdodin.c
@@ -2807,7 +2807,6 @@
 	int *v;
 
 	f = cmd->f;
-	v = 0;
 	if(strcmp(f[0], "debug") == 0)
 		v = &debug;
 	else if(strcmp(f[0], "idprint") == 0)
--