Skip to content

Commit

Permalink
sds: typo fix
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Alminana <[email protected]>
  • Loading branch information
leonardo-albertovich authored and edsiper committed Apr 25, 2023
1 parent fde4d8a commit 2a6e01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cfl_sds.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ cfl_sds_t cfl_sds_printf(cfl_sds_t *sds, const char *fmt, ...)
va_end(ap);

if (size >= cfl_sds_avail(s)) {
tmp = cfl_sds_increase(s, size - flb_sds_avail(s) + 1);
tmp = cfl_sds_increase(s, size - cfl_sds_avail(s) + 1);
if (!tmp) {
return NULL;
}
Expand Down

0 comments on commit 2a6e01b

Please sign in to comment.