Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4207 → Rev 4208

/trunk/kernel/generic/src/printf/vsnprintf.c
36,6 → 36,7
#include <printf/printf_core.h>
#include <string.h>
#include <memstr.h>
#include <errno.h>
 
typedef struct {
size_t size; /* Total size of the buffer (in bytes) */
86,7 → 87,7
while (index < size) {
wchar_t uc = chr_decode(str, &index, size);
 
if (!chr_encode(uc, data->dst, &data->len, data->size - 1))
if (chr_encode(uc, data->dst, &data->len, data->size - 1) != EOK)
break;
}
146,7 → 147,7
return ((int) size);
}
if (!chr_encode(str[index], data->dst, &data->len, data->size - 1))
if (chr_encode(str[index], data->dst, &data->len, data->size - 1) != EOK)
break;
index++;