From 99e7331390397b3a760454f13ca207db659490f1 Mon Sep 17 00:00:00 2001 From: Sophia Weber Date: Sun, 28 Jan 2024 19:17:33 +0100 Subject: [PATCH] refactoring: Change struct variable name --- src/inputHandling.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inputHandling.h b/src/inputHandling.h index 9939eae..1772592 100644 --- a/src/inputHandling.h +++ b/src/inputHandling.h @@ -10,7 +10,7 @@ op functionsType; char* formular; double inputNumbers[10]; int arrayLength; -void* child[10]; // all children structs which depends on this struct +void* children[10]; // all children structs which depends on this struct void* parent; // the parent struct which this struct depends on double result; }calc_op;