tmpfiles: rename second parameter to GREEDY_REALLOC() 'allocated'
authorLennart Poettering <lennart@poettering.net>
Thu, 25 Oct 2018 11:48:25 +0000 (13:48 +0200)
committerLennart Poettering <lennart@poettering.net>
Thu, 8 Nov 2018 08:52:16 +0000 (09:52 +0100)
We pretty much always name it like that, and it is very descriptive,
hence let's stick to that nomenclature here.

src/tmpfiles/tmpfiles.c

index 7819d96c672cc6da228283d3b9b8406259981acc..bad7fb60637c45ae7cb3bf907db8f7fc9a546241 100644 (file)
@@ -136,7 +136,7 @@ typedef struct Item {
 typedef struct ItemArray {
         Item *items;
         size_t count;
-        size_t size;
+        size_t allocated;
 } ItemArray;
 
 typedef enum DirectoryType {
@@ -2795,7 +2795,7 @@ static int parse_line(const char *fname, unsigned line, const char *buffer, bool
                         return log_oom();
         }
 
-        if (!GREEDY_REALLOC(existing->items, existing->size, existing->count + 1))
+        if (!GREEDY_REALLOC(existing->items, existing->allocated, existing->count + 1))
                 return log_oom();
 
         memcpy(existing->items + existing->count++, &i, sizeof(i));