From f2da93818bd39513adc3f8383a33e5b9c6fff13f Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sat, 21 May 2022 15:46:19 +0200 Subject: [PATCH] removed *all* trailing spaces God, please... --- .github/workflows/why2-project.yml | 4 ++-- .github/workflows/why2-test.yml | 8 ++++---- src/lib/encrypter.c | 2 +- src/lib/misc.c | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/why2-project.yml b/.github/workflows/why2-project.yml index 4aac053..445c28a 100644 --- a/.github/workflows/why2-project.yml +++ b/.github/workflows/why2-project.yml @@ -17,7 +17,7 @@ jobs: configure: configure.sh build: build.sh test: test - + steps: - name: Checkout repository uses: actions/checkout@v2 @@ -26,7 +26,7 @@ jobs: - if: matrix.os == 'ubuntu-latest' name: Update packages - run: | + run: | sudo apt update sudo apt upgrade diff --git a/.github/workflows/why2-test.yml b/.github/workflows/why2-test.yml index 4571c77..e826ccc 100644 --- a/.github/workflows/why2-test.yml +++ b/.github/workflows/why2-test.yml @@ -18,7 +18,7 @@ jobs: configure: configure.sh build: build.sh app: why2 - + steps: - name: Checkout repository uses: actions/checkout@v2 @@ -27,7 +27,7 @@ jobs: - if: matrix.os == 'ubuntu-latest' name: Update packages - run: | + run: | sudo apt update sudo apt upgrade @@ -65,7 +65,7 @@ jobs: output: out/why2-test configure: configure.sh app: why2 - + steps: - name: Checkout repository uses: actions/checkout@v2 @@ -74,7 +74,7 @@ jobs: - if: matrix.os == 'ubuntu-latest' name: Update packages - run: | + run: | sudo apt update sudo apt upgrade diff --git a/src/lib/encrypter.c b/src/lib/encrypter.c index 7b3e32e..fc214d1 100644 --- a/src/lib/encrypter.c +++ b/src/lib/encrypter.c @@ -44,7 +44,7 @@ outputFlags encryptText(char *text, char *keyNew, inputFlags flags) { //SET numberBuffer TO RANDOM NUMBER BETWEEN 0 AND 52 numberBuffer = (rand() % 52) + 1; - + //GET CHAR FROM numberBuffer if (numberBuffer > 26) { diff --git a/src/lib/misc.c b/src/lib/misc.c index 98839ae..c2c2114 100644 --- a/src/lib/misc.c +++ b/src/lib/misc.c @@ -90,7 +90,7 @@ void checkVersion(inputFlags flags) struct json_object *deprecated; json_object_object_get_ex(parsedJson, "deprecated", &deprecated); - + //COUNT versionsIndex for (int i = 0; i < json_object_array_length(deprecated); i++) { @@ -130,7 +130,7 @@ void checkVersion(inputFlags flags) void generateTextKeyChain(char key[], int *textKeyChain, int textKeyChainSize) { int numberBuffer; - + for (int i = 0; i < textKeyChainSize; i++) { numberBuffer = i;