From: hackbard <hackbard>
Date: Sat, 16 Oct 2004 09:18:03 +0000 (+0000)
Subject: no help variable needed in dft.c | corrected makefile
X-Git-Url: https://hackdaworld.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2394a7ace3a3dc8fec5eb88424f94fbdfd99ffa;p=physik%2Fnlsop.git

no help variable needed in dft.c | corrected makefile
---

diff --git a/dft.c b/dft.c
index 4bbbb46..33f2e97 100644
--- a/dft.c
+++ b/dft.c
@@ -15,7 +15,6 @@ int main(int argc,char **argv) {
   int x,y;
   int offy,offt;
   int scale;
-  int help;
   double max;
   double *mag;
 
diff --git a/makefile b/makefile
index 9a9f76e..d17b37e 100644
--- a/makefile
+++ b/makefile
@@ -9,6 +9,7 @@ OBJS = network.o event.o input.o display.o audio.o fourier.o bmp.o
 
 dft: links $(OBJS)
 	$(CC) $(CFLAGS) -o $@ $(OBJS) dft.c $(LIBS)
+
 all: links dft
 
 clean: