mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Fix location reported by sway_assert
This commit is contained in:
parent
eb3b1ec5f1
commit
709b53bd43
2 changed files with 4 additions and 4 deletions
|
@ -142,14 +142,14 @@ void sway_log_errno(log_importance_t verbosity, char* format, ...) {
|
|||
}
|
||||
}
|
||||
|
||||
bool _sway_assert(bool condition, const char* format, ...) {
|
||||
bool _sway_assert(bool condition, const char *filename, int line, const char* format, ...) {
|
||||
if (condition) {
|
||||
return true;
|
||||
}
|
||||
|
||||
va_list args;
|
||||
va_start(args, format);
|
||||
sway_vlog(L_ERROR, format, args);
|
||||
_sway_vlog(filename, line, L_ERROR, format, args);
|
||||
va_end(args);
|
||||
|
||||
#ifndef NDEBUG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue