mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2025-08-07 15:04:39 +08:00
minor: coding style fixes
This commit is contained in:
parent
cb5f7859fd
commit
14ca418ac0
@ -403,8 +403,7 @@ static void copy_file(const char *filename_in, FILE *fout)
|
||||
exit(-1);
|
||||
}
|
||||
buf = malloc(COPY_BUFSIZE);
|
||||
while((len = fread(buf, 1, COPY_BUFSIZE, fin)) > 0)
|
||||
{
|
||||
while ((len = fread(buf, 1, COPY_BUFSIZE, fin)) > 0) {
|
||||
fwrite(buf, 1, len, fout);
|
||||
}
|
||||
free(buf);
|
||||
@ -493,8 +492,7 @@ u8_t* get_file_data(const char* filename, int* file_size, int can_be_compressed,
|
||||
}
|
||||
fseek(inFile, 0, SEEK_END);
|
||||
rs = ftell(inFile);
|
||||
if(rs < 0)
|
||||
{
|
||||
if (rs < 0) {
|
||||
printf("ftell failed with %d\n", errno);
|
||||
exit(-1);
|
||||
}
|
||||
@ -643,8 +641,7 @@ static int is_valid_char_for_c_var(char x)
|
||||
if (((x >= 'A') && (x <= 'Z')) ||
|
||||
((x >= 'a') && (x <= 'z')) ||
|
||||
((x >= '0') && (x <= '9')) ||
|
||||
(x == '_'))
|
||||
{
|
||||
(x == '_')) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
@ -921,14 +918,12 @@ int file_write_http_header(FILE *data_file, const char *filename, int file_size,
|
||||
memset(&stat_data, 0, sizeof(stat_data));
|
||||
cur_string = modbuf;
|
||||
strcpy(modbuf, "Last-Modified: ");
|
||||
if(stat(filename, &stat_data) != 0)
|
||||
{
|
||||
if (stat(filename, &stat_data) != 0) {
|
||||
printf("stat(%s) failed with error %d\n", filename, errno);
|
||||
exit(-1);
|
||||
}
|
||||
t = gmtime(&stat_data.st_mtime);
|
||||
if(t == NULL)
|
||||
{
|
||||
if (t == NULL) {
|
||||
printf("gmtime() failed with error %d\n", errno);
|
||||
exit(-1);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user