]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Fix indentation and remove a blank line
authorFrancois-Xavier Le Bail <[email protected]>
Sat, 22 Jan 2022 17:39:52 +0000 (18:39 +0100)
committerFrancois-Xavier Le Bail <[email protected]>
Sat, 22 Jan 2022 17:47:34 +0000 (18:47 +0100)
[skip ci]

instrument-functions.c

index bab3206557c7a326c7d7f7fa868db44ecd0b9656..5faf63b5634b64d48825d8c100db1907b857706e 100644 (file)
@@ -75,12 +75,11 @@ read_functions_table(void)
        FILE *fp;
        int i = 0;
        if ((fp = fopen(FILE_NAME, "r")) == NULL) {
-       printf("Warning: Cannot open \"%s\" file\n", FILE_NAME);
+               printf("Warning: Cannot open \"%s\" file\n", FILE_NAME);
                return;
        }
        while (i < MAX_FUNCTIONS && fscanf(fp, "%p %c %s", &functions[i].addr,
                      &functions[i].type, functions[i].name) != EOF)
-
                i++;
        fclose(fp);
        functions_count = i;