diff --git a/proxy/logging/LogBuffer.h b/proxy/logging/LogBuffer.h index f732aae6e63..fdcd32f61a9 100644 --- a/proxy/logging/LogBuffer.h +++ b/proxy/logging/LogBuffer.h @@ -65,14 +65,14 @@ struct LogBufferHeader { uint32_t cookie; // so we can find it on disk uint32_t version; // in case we want to change it later uint32_t format_type; // SQUID_LOG, COMMON_LOG, ... - uint32_t byte_count; // acutal # of bytes for the segment + uint32_t byte_count; // actual # of bytes for the segment uint32_t entry_count; // actual number of entries stored uint32_t low_timestamp; // lowest timestamp value of entries uint32_t high_timestamp; // highest timestamp value of entries uint32_t log_object_flags; // log object flags uint64_t log_object_signature; // log object signature #if defined(LOG_BUFFER_TRACKING) - uint32_t int id; + uint32_t id; #endif // defined(LOG_BUFFER_TRACKING) // all offsets are computed from the start of the buffer (ie, "this"),