Skip to content

Commit

Permalink
Merge pull request #90 from anustuvicl/2023.09.18-sdelib_fix_minimal_…
Browse files Browse the repository at this point in the history
…test

sde: Fix Minimal_Test.c handle pointer
  • Loading branch information
anustuvicl authored Sep 18, 2023
2 parents ee97a32 + 8c11961 commit 9a5f35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/sde/tests/Minimal/Minimal_Test.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ long long local_var;

void mintest_init(void){
local_var =0;
papi_handle_t *handle = papi_sde_init("Min Example Code");
papi_handle_t handle = papi_sde_init("Min Example Code");
papi_sde_register_counter(handle, "Example Event", PAPI_SDE_RO|PAPI_SDE_DELTA, PAPI_SDE_long_long, &local_var);
}

Expand Down

0 comments on commit 9a5f35e

Please sign in to comment.