You should be able to just run `clang-format` over
your edited code and that should reformat it to make the format checker happy.
I figured it out afterwards :sweat_smile:
There are some function calls (`close()` for example)
between testing the `errno` value and printing out the log line. These functions might
reset `errno` to something else. You should either reorder the code so that the log
printing happens immediately after testing `errno`, or save the value to an intermediary
variable and then print that.
I'll fix.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3899#issuecomment-2200768504
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3899/c2200768504(a)github.com>