~ft/libtags

50089a7bc01d931a547816ecdbb0d37e4f7091c4 — Sigrid Solveig Haflínudóttir 2 years ago 3ab23ef
gcc so fragile...
1 files changed, 1 insertions(+), 1 deletions(-)

M wav.c
M wav.c => wav.c +1 -1
@@ 69,7 69,7 @@ tagwav(Tagctx *ctx)
			csz++;
			for(n = 0; n < nelem(t); n++){
				if(memcmp(d, t[n].s, 4) == 0){
					if(ctx->read(ctx, d, csz) != csz)
					if((uint)ctx->read(ctx, d, csz) != csz)
						return -1;
					d[csz-1] = 0;
					txtcb(ctx, t[n].type, "", d);