Browse Source

nvapi: fix weird code style

pull/2/head
Tanguy Pruvot 7 years ago
parent
commit
6c9852c153
  1. 2
      nvml.cpp

2
nvml.cpp

@ -1723,7 +1723,7 @@ int nvapi_init() @@ -1723,7 +1723,7 @@ int nvapi_init()
{
int num_gpus = cuda_num_devices();
NvAPI_Status ret = NvAPI_Initialize();
if (!ret == NVAPI_OK){
if (ret != NVAPI_OK) {
NvAPI_ShortString string;
NvAPI_GetErrorMessage(ret, string);
if (opt_debug)

Loading…
Cancel
Save