Skip to content

Commit a67a4cb

Browse files
author
DenverM80
committed
Add comments clarifying BOOKS and BUCKETNAME are defined in samples.h
1 parent f9e9270 commit a67a4cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sample/get-bulk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
int main(void) {
2323

2424
// The bucket the files will be stored in
25-
const char* bucket_name = BUCKETNAME;
25+
const char* bucket_name = BUCKETNAME; // defined in samples.h
2626

2727
// Get a client instance which uses the environment variables to get the endpoint and credentials
2828
ds3_client* client;

sample/put-bulk.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
int main(void) {
2323

2424
// The bucket the files will be stored in
25-
const char* bucket_name = BUCKETNAME;
25+
const char* bucket_name = BUCKETNAME; // defined in samples.h
2626

2727
// A list of files to bulk put
28-
const char* books[4] = BOOKS;
28+
const char* books[4] = BOOKS; // defined in samples.h
2929

3030
// Get a client instance which uses the environment variables to get the endpoint and credentials
3131
ds3_client* client;

0 commit comments

Comments
 (0)