diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-10 13:39:10 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-11 14:35:34 -0800 |
commit | 265ea3a77418df2744575f1168f89a33f01e72d4 (patch) | |
tree | 7b67b74b0a3b3e519f80b78e56be491acd748653 /indicators.c | |
parent | 81e51cf1ff494131827df487a0f538c3b07e0407 (diff) |
Replace uAlloc() and uTypedAlloc() with direct malloc() calls
All these wrappers did was mess with types.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'indicators.c')
-rw-r--r-- | indicators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indicators.c b/indicators.c index 4eaa6ae..0e82d4a 100644 --- a/indicators.c +++ b/indicators.c @@ -147,7 +147,7 @@ AddIndicatorMap(LEDInfo * oldLEDs, LEDInfo * new) last = old; } /* new definition */ - old = uTypedAlloc(LEDInfo); + old = malloc(sizeof(LEDInfo)); if (!old) { WSGO("Couldn't allocate indicator map\n"); |