AfanasevGad7

This is a task for our favourite professor
git clone git://git.stellar-nexus.ru/AfanasevGad7
Log | Files | Refs | README

commit 76d80c1511761e18a893e2ff092434f777d04d74
parent 8fc4d9a71c812efd995ce759a8fad0d82644bd2a
Author: Plat <plat@stellar-nexus.ru>
Date:   Thu,  6 Nov 2025 21:11:53 +0000

Fixed typos

Diffstat:
Mrb.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/rb.c b/rb.c @@ -125,10 +125,10 @@ main(int argc, char *argv[]) } } while (ch != EOF && len <= TESTNUMBER); efshut(file, filename); - if (i < TESTNUMBER) + if (len < TESTNUMBER) eprintf("Array too small\n"); - if (i > TESTNUMBER) - wepritnf("Array too big - using only %d elements\n", TESTNUMBER); + if (len > TESTNUMBER) + weprintf("Array too big - using only %d elements\n", TESTNUMBER); Node *root = NULL;