summaryrefslogtreecommitdiffstats
path: root/genwave.c
diff options
context:
space:
mode:
authorSuper User2008-07-29 19:00:12 +0200
committerSuper User2008-07-29 19:00:12 +0200
commitde8f81a69bac7db90856ddb639c4bfa62fa80150 (patch)
tree021bfad67f82e217c37b0e92163a5f67f975875e /genwave.c
parentfixed problem with "Answer" after extension matches. (diff)
downloadlcr-de8f81a69bac7db90856ddb639c4bfa62fa80150.tar.gz
lcr-de8f81a69bac7db90856ddb639c4bfa62fa80150.tar.xz
lcr-de8f81a69bac7db90856ddb639c4bfa62fa80150.zip
make compile with gcc 4.* without warnings. (hopefully with all versions)
modified: Makefile modified: bchannel.c modified: chan_lcr.h modified: extension.c modified: gentones.c modified: genwave.c modified: joinpbx.cpp modified: tones.c
Diffstat (limited to 'genwave.c')
-rw-r--r--genwave.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/genwave.c b/genwave.c
index cb62262..c614a2e 100644
--- a/genwave.c
+++ b/genwave.c
@@ -106,7 +106,7 @@ void write_law(FILE *fp, char *name, char law)
/* get size */
fseek(lfp, 0, SEEK_END);
size = ftell(lfp);
- printf("samples: %ld\n", size);
+ printf("samples: %d\n", size);
size += size;
fseek(lfp, 0, SEEK_SET);