]> pilppa.org Git - lib1wire.git/blobdiff - src/W1Device.cc
cleanups
[lib1wire.git] / src / W1Device.cc
index 576d216713e9e5f9223fa753c729d8f5aa1c77ed..0ee589845d75ba9ae0ecdddb142cded40c3beebf 100644 (file)
@@ -155,7 +155,10 @@ void W1Device::save_and_clean_cache() {
 
        dec_precision   = get_data_decimal_precision();
        pthread_mutex_lock(&plock);
-       log_debug("memory cache size: %lu\n", memory_cache.size());
+       /* needs to be casted to long unsigned int value is "unsigned int" in some
+           toolchains and that would otherwise cause an warning/error 
+        */
+       log_debug("memory cache size: %lu\n", (long unsigned int)memory_cache.size());
        StoreDay::save(id, &memory_cache, dec_precision);
        while(memory_cache.empty() == false) {
                data    = memory_cache.back();