Skip to content
Snippets Groups Projects
Commit 674be3d3 authored by Adam Wujek's avatar Adam Wujek :speech_balloon:
Browse files

userspace/tools: fix missing endlines


Bug introduced in the commit:
userspace/libwr: move defines of rtu entry type to libwr

Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
parent 3e4082a9
Branches
Tags
No related merge requests found
......@@ -333,10 +333,10 @@ void dump_one_field(void *addr, struct dump_info *info)
i = *(uint32_t *)p;
switch (i) {
case RTU_ENTRY_TYPE_STATIC:
printf("static");
printf("static\n");
break;
case RTU_ENTRY_TYPE_DYNAMIC:
printf("dynamic");
printf("dynamic\n");
break;
default:
printf("Unknown(%d)\n", i);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment