Remove unneeded variables and initialisations in easycsv_read_value

Signed-off-by: Pradana AUMARS <paumars@courrier.dev>
This commit is contained in:
Pradana AUMARS 2021-07-16 20:57:46 +02:00
parent 3304163ab0
commit 39059b3e49
1 changed files with 2 additions and 2 deletions

View File

@ -109,8 +109,8 @@ easycsv_read_value(const easycsv *csv,
unsigned int row) unsigned int row)
{ {
char str_row[BUFSIZ]; char str_row[BUFSIZ];
size_t st = 0; size_t st;
char *pch, *pch_end, *val; char *pch, *val;
if (row == 0) { if (row == 0) {
easycsv_error(EASYCSV_ZEROROW, NULL); easycsv_error(EASYCSV_ZEROROW, NULL);
return NULL; return NULL;