diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-03 03:17:17 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-03 03:17:17 +0000 |
commit | dfbf08f536f2b092aa3f7a44ca58256683f3b3d3 (patch) | |
tree | 7538f18d20e31ef3ca5cd57ab4fe7c4f4e1bf85b | |
parent | 0dc933020bbd37805495b84ba208ade6254a84fb (diff) |
switch logpost() to verbose() since it has been around longer
svn path=/trunk/externals/loaders/tclpd/; revision=15469
-rw-r--r-- | tclpd.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -11,11 +11,8 @@ void tclpd_setup(void) { return; } -#if PD_MAJOR_VERSION==0 && PD_MINOR_VERSION<43 - post("tclpd loader v" TCLPD_VERSION); -#else - logpost(NULL, 3, "tclpd loader v" TCLPD_VERSION); -#endif + /* verbose(-1) post to the pd window at level 3 */ + verbose(-1, "tclpd loader v" TCLPD_VERSION); proxyinlet_setup(); |