Skip to content

Commit

Permalink
Fixed logic bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 9, 2009
1 parent 8d26453 commit 3cd7142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/fatelf-utils.c
Expand Up @@ -154,7 +154,7 @@ size_t fatelf_header_size(const int bincount)
static inline uint8_t *putui8(uint8_t *ptr, const uint8_t val)
{
*(ptr++) = val;
return ptr + 1;
return ptr;
} // putui8


Expand Down

0 comments on commit 3cd7142

Please sign in to comment.