Skip to content

Commit e488a28

Browse files
committed
Fix a warning.
1 parent ddd087d commit e488a28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

format.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ void fmt::internal::PrintfFormatter<Char>::format(
917917
break;
918918
case 'l':
919919
if (*s == 'l')
920-
ArgConverter<long long>(arg, *++s).visit(arg);
920+
ArgConverter<fmt::LongLong>(arg, *++s).visit(arg);
921921
else
922922
ArgConverter<long>(arg, *s).visit(arg);
923923
break;

0 commit comments

Comments
 (0)