diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2023-07-30 16:23:44 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2023-07-30 16:23:44 (EDT) |
commit | c1b7e91add52a38cd254969f2b2efd8cd6d001e6 (patch) | |
tree | 3c69325c1e343dc92e8df26758ff63c1f1f412fc | |
parent | 5b1dadf5161b45243d492ddcde34b2a4b437675c (diff) |
opk/write: Wrap a long line
-rw-r--r-- | opkg-opk/opk/write.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opkg-opk/opk/write.c b/opkg-opk/opk/write.c index 996007d..0d3ce40 100644 --- a/opkg-opk/opk/write.c +++ b/opkg-opk/opk/write.c @@ -113,8 +113,8 @@ _opkg_opk_opk_write_dir_read(struct opkg_opk_opk *opk, int ret; child_path = opk->path_virt + path_off; - children_n = scandir(opk->path_real, &children, _opkg_opk_opk_write_filter, - _opkg_opk_opk_write_compar); + children_n = scandir(opk->path_real, &children, + _opkg_opk_opk_write_filter, _opkg_opk_opk_write_compar); for (children_i = 0; children_i < children_n; ++children_i) { child.name = children[children_i]->d_name; child.parent = dir; |