Skip to content

Commit

Permalink
Fix missing linefeed and param debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsteele committed Jan 16, 2019
1 parent c0a9048 commit 49bd8e0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/storage/driver/s3/fileRead.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,15 @@ struct StorageDriverS3FileRead
/***********************************************************************************************************************************
Create a new file
***********************************************************************************************************************************/
StorageDriverS3FileRead *storageDriverS3FileReadNew(StorageDriverS3 *storage, const String *name, bool ignoreMissing)
StorageDriverS3FileRead *
storageDriverS3FileReadNew(StorageDriverS3 *storage, const String *name, bool ignoreMissing)
{
FUNCTION_DEBUG_BEGIN(logLevelTrace);
FUNCTION_DEBUG_PARAM(STORAGE_DRIVER_S3, storage);
FUNCTION_DEBUG_PARAM(STRING, name);
FUNCTION_DEBUG_PARAM(BOOL, ignoreMissing);

FUNCTION_TEST_ASSERT(storage != NULL);
FUNCTION_TEST_ASSERT(name != NULL);
FUNCTION_DEBUG_END();

Expand Down

0 comments on commit 49bd8e0

Please sign in to comment.