From: Joel Rosdahl Date: Sat, 2 Nov 2024 15:12:32 +0000 (+0100) Subject: chore: Fix typo X-Git-Tag: v4.11~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e11661a5ccf769b85bc545ded04656f093d21691;p=thirdparty%2Fccache.git chore: Fix typo --- diff --git a/src/ccache/core/common.cpp b/src/ccache/core/common.cpp index 63c399d0..f9593733 100644 --- a/src/ccache/core/common.cpp +++ b/src/ccache/core/common.cpp @@ -186,7 +186,7 @@ get_diagnostics_path_length(std::string_view line) || (line[0] >= 'a' && line[0] <= 'z'))) { path_end = line.find(':', 3); if (path_end == std::string_view::npos) { - // Treat the dirve letter as "path". + // Treat the drive letter as "path". path_end = 1; } } else {