2
0
mirror of git://github.com/lxc/lxc synced 2025-08-30 07:22:05 +00:00

string_utils: coding rules

Signed-off-by: 2xsec <dh48.jeong@samsung.com>
This commit is contained in:
2xsec 2018-11-02 15:17:50 +09:00
parent 5f76b90f47
commit b9bb8bbbf3
No known key found for this signature in database
GPG Key ID: 0BE2750EE612F372

View File

@ -774,7 +774,7 @@ char *must_concat(const char *first, ...)
}
va_end(args);
dest[cur_len] = 0;
dest[cur_len] = '\0';
return dest;
}