Changeset 30b56d9 in mainline
- Timestamp:
- 2023-02-04T17:14:26Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1b073b7
- Parents:
- 661a5ac
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2022-08-14 13:32:11)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-02-04 17:14:26)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/assert.c
r661a5ac r30b56d9 46 46 * Send the message safely to kio. Nested asserts should not occur. 47 47 */ 48 kio_printf("Assertion failed (%s) in task % ld, file \"%s\", line %u.\n",49 cond, (long)task_get_id(), file, line);48 kio_printf("Assertion failed (%s) in task %" PRIu64 ", file \"%s\", line %u.\n", 49 cond, task_get_id(), file, line); 50 50 51 51 stacktrace_kio_print(); … … 60 60 * Send the message safely to kio. Nested asserts should not occur. 61 61 */ 62 kio_printf("Assertion failed (%s) in task % ld, file \"%s\", line %u.\n",63 cond, (long)task_get_id(), file, line);62 kio_printf("Assertion failed (%s) in task %" PRIu64 ", file \"%s\", line %u.\n", 63 cond, task_get_id(), file, line); 64 64 65 65 stacktrace_kio_print(); … … 77 77 * assertions. 78 78 */ 79 kio_printf("Assertion failed (%s) in task % ld, file \"%s\", line %u.\n",80 cond, (long)task_get_id(), file, line);79 kio_printf("Assertion failed (%s) in task %" PRIu64 ", file \"%s\", line %u.\n", 80 cond, task_get_id(), file, line); 81 81 stacktrace_print(); 82 82
Note:
See TracChangeset
for help on using the changeset viewer.