fix(cos): fix syntax error.

This commit is contained in:
Haojun Liao 2024-04-28 21:53:50 +08:00
parent 6c93fe5593
commit f16bd528a5
1 changed files with 1 additions and 1 deletions

View File

@ -1733,6 +1733,6 @@ int32_t s3GetObjectBlock(const char *object_name, int64_t offset, int64_t size,
void s3EvictCache(const char *path, long object_size) {} void s3EvictCache(const char *path, long object_size) {}
long s3Size(const char *object_name) { return 0; } long s3Size(const char *object_name) { return 0; }
int32_t s3GetObjectsByPrefix(const char *prefix, const char *path) { return 0; } int32_t s3GetObjectsByPrefix(const char *prefix, const char *path) { return 0; }
int32_t s3GetObjectToFile(const char *object_name, char *fileName) { return 0; } int32_t s3GetObjectToFile(const char *object_name, const char *fileName) { return 0; }
#endif #endif