Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix warning : unused variable 'result'
  • Loading branch information
chris-eibl committed Mar 22, 2025
commit bf77bdaff18ff87ec93a145ed3e0f50a7391a292
1 change: 0 additions & 1 deletion PC/_wmimodule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ _wmi_exec_query_impl(PyObject *module, PyObject *query)

/*[clinic end generated code]*/
{
PyObject *result = NULL;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix warning : unused variable 'result' [-Wunused-variable]

HANDLE hThread = NULL;
int err = 0;
WCHAR buffer[8192];
Expand Down
Loading