Skip to content

Commit

Permalink
fixed return
Browse files Browse the repository at this point in the history
  • Loading branch information
mku11 committed Oct 28, 2024
1 parent fdcd212 commit 4ce37f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/src/c/salmon/src/salmon-aes-opencl.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ int aes_opencl_transform_ctr(const unsigned char* key, unsigned char* counter,
return aes_opencl_transform(key, counter, srcBuffer, srcOffset, destBuffer, destOffset, count);
}
#else
int init_opencl() {}
int init_opencl() { return 0; }
void aes_opencl_key_expand(const unsigned char* userkey, unsigned char* key) {}

int aes_opencl_transform(const unsigned char* key, unsigned char* counter,
Expand Down

0 comments on commit 4ce37f4

Please sign in to comment.