mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 22:34:04 +02:00
Make mksyshdr safe for 64bits platforms (#1504)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6646 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
6ca9d74875
commit
682110ad52
@ -1,11 +1,13 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
FILE* fp;
|
||||
long nImgSize;
|
||||
uint32_t nImgSize;
|
||||
char* pHeader1 = "CSYS";
|
||||
long nHeader2 = 0x80500000;
|
||||
uint32_t nHeader2 = 0x80500000;
|
||||
|
||||
if (argc != 3)
|
||||
{
|
||||
@ -23,8 +25,8 @@ int main(int argc, char* argv[])
|
||||
if (fp != NULL)
|
||||
{
|
||||
fwrite(pHeader1, sizeof(char), 4, fp);
|
||||
fwrite(&nHeader2, sizeof(long), 1, fp);
|
||||
fwrite(&nImgSize, sizeof(long), 1, fp);
|
||||
fwrite(&nHeader2, sizeof(nHeader2), 1, fp);
|
||||
fwrite(&nImgSize, sizeof(nImgSize), 1, fp);
|
||||
fclose(fp);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user