diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-01-31 12:12:59 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-01-31 12:12:59 +0000 |
commit | 3d1c1fcc8d71f8b1f68ea590185006b5b3a6d911 (patch) | |
tree | d2d5a46407375515bef837495f37b30a8259b032 /doc | |
parent | 8c56fde4c7e152877da60d6a36654890d757a212 (diff) |
bug-fixes
svn path=/trunk/; revision=4527
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tutorials/externals-howto/example1/helloworld.c | 1 | ||||
-rw-r--r-- | doc/tutorials/externals-howto/example3/counter.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/tutorials/externals-howto/example1/helloworld.c b/doc/tutorials/externals-howto/example1/helloworld.c index e93a6e0f..f3660f45 100644 --- a/doc/tutorials/externals-howto/example1/helloworld.c +++ b/doc/tutorials/externals-howto/example1/helloworld.c @@ -45,6 +45,7 @@ void helloworld_bang(t_helloworld *x) * the string (which can be formatted like with printf()) will be * output to wherever Pd thinks it has too (pd's console, the stderr...) * it automatically adds a newline at the end of the string + */ post("Hello world !!"); } diff --git a/doc/tutorials/externals-howto/example3/counter.c b/doc/tutorials/externals-howto/example3/counter.c index 4eee6a5e..5fa8caef 100644 --- a/doc/tutorials/externals-howto/example3/counter.c +++ b/doc/tutorials/externals-howto/example3/counter.c @@ -126,6 +126,7 @@ void *counter_new(t_symbol *s, int argc, t_atom *argv) f1=atom_getfloat(argv); break; case 0: + break; } if (argc<2)f2=f1; |