Skip to content

Commit

Permalink
[image] linux build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiencastan committed Feb 15, 2023
1 parent 0013202 commit c03923e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aliceVision/image/io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -935,10 +935,10 @@ void logOIIOImageCacheInfo()
float maxMemoryMB = -1.f;
cache->getattribute("max_memory_MB", maxMemoryMB);

int64 cacheMemoryUsed = -1;
int64_t cacheMemoryUsed = -1;
cache->getattribute("stat:cache_memory_used", oiio::TypeDesc::INT64, &cacheMemoryUsed);

int64 bytesRead = -1;
int64_t bytesRead = -1;
cache->getattribute("stat:bytes_read", oiio::TypeDesc::INT64, &bytesRead);

ALICEVISION_LOG_INFO("OIIO image cache info: " <<
Expand Down

0 comments on commit c03923e

Please sign in to comment.