diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-23 16:14:39 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-23 16:14:39 +0200 |
commit | 0ccd9febebdb7f2de700d116a8498f23de093e88 (patch) | |
tree | 094f717951a81fd91d01e3d776695629f354d089 /common/emb.cc | |
parent | a40d9dc514b680538d0ffa99873974a15bff9e97 (diff) | |
parent | 1e8840b0f9400a1dc17ba6c7496314f82f0db2e1 (diff) | |
download | nextpnr-0ccd9febebdb7f2de700d116a8498f23de093e88.tar.gz nextpnr-0ccd9febebdb7f2de700d116a8498f23de093e88.tar.bz2 nextpnr-0ccd9febebdb7f2de700d116a8498f23de093e88.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'common/emb.cc')
-rw-r--r-- | common/emb.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/emb.cc b/common/emb.cc index 27c5d6e1..be678de0 100644 --- a/common/emb.cc +++ b/common/emb.cc @@ -107,8 +107,7 @@ PyMODINIT_FUNC PyInit_emb(void) PyObject *m = PyModule_Create(&embmodule); if (m) { Py_INCREF(&StdoutType); - PyModule_AddObject(m, "Stdout", - reinterpret_cast<PyObject *>(&StdoutType)); + PyModule_AddObject(m, "Stdout", reinterpret_cast<PyObject *>(&StdoutType)); } return m; } |