Files
llvm-project/libunwind
Alexander Kornienko 1f332ae4f1 Fix -Wformat diagnostic after #190965 (#193704)
Fixes libunwind compiler diagnostic when building with clang after
034d4dcad6:
```
In file included from libunwind/src/libunwind.cpp:31:
In file included from libunwind/src/UnwindCursor.hpp:52:
libunwind/src/CompactUnwinder.hpp:339:46: error: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Werror,-Wformat]
  338 |                            "function starting at 0x%llX",
      |                                                    ~~~~
      |                                                    %lX
  339 |                             compactEncoding, functionStart);
      |                                              ^~~~~~~~~~~~~
libunwind/src/config.h:215:63: note: expanded from macro '_LIBUNWIND_DEBUG_LOG'
  215 |   #define _LIBUNWIND_DEBUG_LOG(msg, ...)  _LIBUNWIND_LOG(msg, __VA_ARGS__)
      |                                                          ~~~  ^~~~~~~~~~~
libunwind/src/config.h:181:45: note: expanded from macro '_LIBUNWIND_LOG'
  181 |     fprintf(stderr, "libunwind: " msg "\n", __VA_ARGS__);                      \
      |                                   ~~~       ^~~~~~~~~~~
In file included from libunwind/src/libunwind.cpp:31:
In file included from libunwind/src/UnwindCursor.hpp:52:
libunwind/src/CompactUnwinder.hpp:458:39: error: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Werror,-Wformat]
  457 |                            "function starting at 0x%llX",
      |                                                    ~~~~
      |                                                    %lX
  458 |                             encoding, functionStart);
      |                                       ^~~~~~~~~~~~~
libunwind/src/config.h:215:63: note: expanded from macro '_LIBUNWIND_DEBUG_LOG'
  215 |   #define _LIBUNWIND_DEBUG_LOG(msg, ...)  _LIBUNWIND_LOG(msg, __VA_ARGS__)
      |                                                          ~~~  ^~~~~~~~~~~
libunwind/src/config.h:181:45: note: expanded from macro '_LIBUNWIND_LOG'
  181 |     fprintf(stderr, "libunwind: " msg "\n", __VA_ARGS__);                      \
      |                                   ~~~       ^~~~~~~~~~~
```
2026-04-23 10:33:03 +00:00
..