aboutsummaryrefslogtreecommitdiff
path: root/helppath.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-01-30 03:38:27 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-01-30 03:38:27 +0000
commite97111ee9c743dbb05f0aeca799594b5c451c66f (patch)
tree2d3ae6a2c333e52b9b43a8c9e791634796074e6a /helppath.c
parentc44efa4f5c0ce85007d19eaa31a17e0281a9b3be (diff)
post version message using verbose(0)
svn path=/trunk/externals/hcs/; revision=15916
Diffstat (limited to 'helppath.c')
-rw-r--r--helppath.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/helppath.c b/helppath.c
index 1fb05c2..23ab630 100644
--- a/helppath.c
+++ b/helppath.c
@@ -128,9 +128,9 @@ void helppath_setup(void)
class_addmethod(helppath_class,(t_method) helppath_add,gensym("add"),
A_DEFSYMBOL, 0);
- post("[helppath] %s", version);
- post("\tcompiled on "__DATE__" at "__TIME__ " ");
- post("\tcompiled against Pd version %d.%d.%d", PD_MAJOR_VERSION,
- PD_MINOR_VERSION, PD_BUGFIX_VERSION);
+ verbose(0, "[helppath] %s", version);
+ verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " ");
+ verbose(0, "\tcompiled against Pd version %d.%d.%d", PD_MAJOR_VERSION,
+ PD_MINOR_VERSION, PD_BUGFIX_VERSION);
}