summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerwincoumans <erwin.coumans@gmail.com>2020-12-08 17:38:47 -0800
committerGitHub <noreply@github.com>2020-12-08 17:38:47 -0800
commit87b633bb7622d15748de18a2220c3565e4f39d01 (patch)
tree7020950a55f04ae49702d18d873e0de93c8ac720
parent3e16c616d564b83a6df3dc166cf9c23e5951c242 (diff)
downloadbullet3-87b633bb7622d15748de18a2220c3565e4f39d01.tar.gz
Update pybullet.c
send output to stderr (pybullet build message), helps towards Issue #3131
-rw-r--r--examples/pybullet/pybullet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pybullet/pybullet.c b/examples/pybullet/pybullet.c
index 0128bcc84..759346e36 100644
--- a/examples/pybullet/pybullet.c
+++ b/examples/pybullet/pybullet.c
@@ -13066,7 +13066,7 @@ initpybullet(void)
SpamError = PyErr_NewException("pybullet.error", NULL, NULL);
Py_INCREF(SpamError);
PyModule_AddObject(m, "error", SpamError);
- printf("pybullet build time: %s %s\n", __DATE__, __TIME__);
+ fprintf(stderr, "pybullet build time: %s %s\n", __DATE__, __TIME__);
Py_AtExit(b3pybulletExitFunc);