Skip to content

Commit 93dc42c

Browse files
committed
variable name is_get -> isGet
1 parent 89b6a20 commit 93dc42c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

demos/http/http_demo_s3_generate_presigned_url/http_demo_s3_generate_presigned_url.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ struct NetworkContext
227227
static bool printS3ObjectFilePresignedURL( const char * pHost,
228228
size_t hostLen,
229229
const char * pPath,
230-
const bool is_get );
230+
const bool isGet );
231231

232232
/**
233233
* @brief CryptoInterface provided to SigV4 library for generating the hash digest.
@@ -263,7 +263,7 @@ static SigV4Parameters_t sigv4Params =
263263
static bool printS3ObjectFilePresignedURL( const char * pHost,
264264
size_t hostLen,
265265
const char * pPath,
266-
const bool is_get )
266+
const bool isGet )
267267
{
268268
bool returnStatus = true;
269269
HTTPStatus_t httpStatus = HTTPSuccess;
@@ -293,7 +293,7 @@ static bool printS3ObjectFilePresignedURL( const char * pHost,
293293
/* Initialize the request object. */
294294
requestInfo.pHost = pHost;
295295
requestInfo.hostLen = hostLen;
296-
if( is_get )
296+
if( isGet )
297297
{
298298
requestInfo.pMethod = HTTP_METHOD_GET;
299299
requestInfo.methodLen = sizeof( HTTP_METHOD_GET ) - 1;

0 commit comments

Comments
 (0)