Skip to content

Commit

Permalink
Fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
billschereriii committed Jul 27, 2023
1 parent ffa907d commit 029d69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/serial/c/example_put_unpack_1D.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ int main(int argc, char* argv[]) {
float* tensor = (float*)malloc(dims[0]*sizeof(float));

for(size_t i=0; i<dims[0]; i++)
tensor[i] = ((float)rand())/RAND_MAX;
tensor[i] = ((float)rand())/(float)RAND_MAX;

void* client = NULL;
bool cluster_mode = true; // Set to false if not using a clustered database
Expand Down

0 comments on commit 029d69f

Please sign in to comment.