mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
Coding style followups (#36476)
This commit is contained in:
@@ -1239,14 +1239,14 @@ int strv_rebreak_lines(char **l, size_t width, char ***ret) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
char** strv_filter_prefix(char *const*l, const char *prefix) {
|
||||
_cleanup_strv_free_ char **f = NULL;
|
||||
char** strv_filter_prefix(char * const *l, const char *prefix) {
|
||||
|
||||
/* Allocates a copy of 'l', but only copies over entries starting with 'prefix' */
|
||||
|
||||
if (isempty(prefix))
|
||||
return strv_copy(l);
|
||||
|
||||
_cleanup_strv_free_ char **f = NULL;
|
||||
size_t sz = 0;
|
||||
|
||||
STRV_FOREACH(i, l) {
|
||||
|
||||
@@ -269,4 +269,4 @@ int _string_strv_ordered_hashmap_put(OrderedHashmap **h, const char *key, const
|
||||
|
||||
int strv_rebreak_lines(char **l, size_t width, char ***ret);
|
||||
|
||||
char** strv_filter_prefix(char *const*l, const char *prefix);
|
||||
char** strv_filter_prefix(char * const *l, const char *prefix);
|
||||
|
||||
@@ -613,6 +613,8 @@ size_t utf8_console_width(const char *str) {
|
||||
size_t utf8_last_length(const char *s, size_t n) {
|
||||
int r;
|
||||
|
||||
assert(s);
|
||||
|
||||
if (n == SIZE_MAX)
|
||||
n = strlen(s);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user