diff --git a/dualwand.c b/dualwand.c index 4638620..cb41363 100644 --- a/dualwand.c +++ b/dualwand.c @@ -50,5 +50,5 @@ void umrechnen2(int number, int bits) { printf("0"); } - umrechnen2(number, bits - 1); // Rekursiver Aufruf für das nächste Bit + return umrechnen2(number, bits - 1); // Rekursiver Aufruf für das nächste Bit } \ No newline at end of file diff --git a/dualwand.exe b/dualwand.exe index cf88491..d0bf7bc 100644 Binary files a/dualwand.exe and b/dualwand.exe differ