Silly error in getstring.c
| Date | 1999-05-20 12:33 |
| From | jpff@maths.bath.ac.uk |
| Subject | Silly error in getstring.c |
Message written at 20 May 1999 11:46:43 +0100
especially for Unix users it looks for the database of strings in
/usr/local/lib/ but I got the code wrong. It should read on line 57
if (db == NULL) db = fopen("/usr/local/lib/csound.txt", "rb");
and not
if (db == NULL) fopen("/usr/local/lib/csound.txt", "rb");
which is what it did say.
|