Csound Csound-dev Csound-tekno Search About

Silly error in getstring.c

Date1999-05-20 12:33
Fromjpff@maths.bath.ac.uk
SubjectSilly 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.