Fix compilation on python2
Fix compilation error on python2.
Story: 2006796
Task: 42877
Signed-off-by: Charles Short <charles.short@windriver.com>
Change-Id: I55de8687ed3ea844a2099974a1845f6326b77a5a
(cherry picked from commit 085feb6096
)
This commit is contained in:
parent
d0d380da09
commit
9cda408a59
@ -621,7 +621,11 @@ bool fm_db_util_sync_event_suppression(void){
|
|||||||
|
|
||||||
Py_SetProgramName(argv[0]);
|
Py_SetProgramName(argv[0]);
|
||||||
Py_Initialize();
|
Py_Initialize();
|
||||||
|
#if PY_MAJOR_VERSION >= 3
|
||||||
|
PySys_SetArgv(argc, py_argv);
|
||||||
|
#else
|
||||||
PySys_SetArgv(argc, argv);
|
PySys_SetArgv(argc, argv);
|
||||||
|
#endif
|
||||||
file = fopen(FM_DB_SYNC_EVENT_SUPPRESSION,"r");
|
file = fopen(FM_DB_SYNC_EVENT_SUPPRESSION,"r");
|
||||||
PyRun_SimpleFile(file, FM_DB_SYNC_EVENT_SUPPRESSION);
|
PyRun_SimpleFile(file, FM_DB_SYNC_EVENT_SUPPRESSION);
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
Loading…
Reference in New Issue
Block a user