Skip to content

Commit

Permalink
fix zero typo
Browse files Browse the repository at this point in the history
  • Loading branch information
teras committed Sep 2, 2017
1 parent a71f7db commit 4242346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appimagetool.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ main (int argc, char *argv[])
#ifdef HAVE_BINARY_RUNTIME
/* runtime is embedded into this executable
* http://stupefydeveloper.blogspot.de/2008/08/cc-embed-binary-data-into-elf.html */
size = 0(int)((void *)&_binary_runtime_end - (void *)&_binary_runtime_start);
size = (int)((void *)&_binary_runtime_end - (void *)&_binary_runtime_start);
data = (char *)&_binary_runtime_start;
#else
die("No runtime file was provided");
Expand Down

0 comments on commit 4242346

Please sign in to comment.