From: Jamie Couture Date: Thu, 12 Jan 2012 03:38:49 +0000 (-0500) Subject: use correct type for sizeof X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/6a575b8900734a4640427416885e73c83af70736?ds=sidebyside;hp=6a575b8900734a4640427416885e73c83af70736 use correct type for sizeof **L would have worked well too. Depending on the distribution sizeof *L may return 8 instead of 4. **L is preferable, but since we don't expect this datatype to change very often, sizeof int is less subtle and easier to understand. Signed-off-by: Jamie Couture ---