1
1

Removed unnecessary type cast.

Этот коммит содержится в:
Roland Illig 2004-08-16 16:22:14 +00:00
родитель 8aeea3256f
Коммит bfb2047463
3 изменённых файлов: 5 добавлений и 6 удалений

Просмотреть файл

@ -649,7 +649,7 @@ copy_file_file (FileOpContext *ctx, char *src_path, char *dst_path,
continue; continue;
goto ret; goto ret;
} }
buf = (char *) g_malloc (buf_size); buf = g_malloc (buf_size);
ctx->eta_secs = 0.0; ctx->eta_secs = 0.0;
ctx->bps = 0; ctx->bps = 0;

Просмотреть файл

@ -400,7 +400,7 @@ init_subshell (void)
/* Initialise the pty's I/O buffer */ /* Initialise the pty's I/O buffer */
pty_buffer_size = INITIAL_PTY_BUFFER_SIZE; pty_buffer_size = INITIAL_PTY_BUFFER_SIZE;
pty_buffer = (char *) g_malloc (pty_buffer_size); pty_buffer = g_malloc (pty_buffer_size);
/* Create a pipe for receiving the subshell's CWD */ /* Create a pipe for receiving the subshell's CWD */
@ -574,7 +574,7 @@ read_subshell_prompt (void)
FD_SET (subshell_pty, &tmp); FD_SET (subshell_pty, &tmp);
if (subshell_prompt == NULL) { /* First time through */ if (subshell_prompt == NULL) { /* First time through */
subshell_prompt = (char *) g_malloc (prompt_size); subshell_prompt = g_malloc (prompt_size);
*subshell_prompt = '\0'; *subshell_prompt = '\0';
prompt_pos = 0; prompt_pos = 0;
} }
@ -607,8 +607,7 @@ read_subshell_prompt (void)
subshell_prompt[prompt_pos++] = pty_buffer[i]; subshell_prompt[prompt_pos++] = pty_buffer[i];
if (prompt_pos == prompt_size) if (prompt_pos == prompt_size)
subshell_prompt = subshell_prompt =
(char *) g_realloc (subshell_prompt, prompt_size *= g_realloc (subshell_prompt, prompt_size *= 2);
2);
} }
subshell_prompt[prompt_pos] = '\0'; subshell_prompt[prompt_pos] = '\0';

Просмотреть файл

@ -606,7 +606,7 @@ char *load_file (char *filename)
fclose (data_file); fclose (data_file);
return 0; return 0;
} }
data = (char *) g_malloc (s.st_size+1); data = g_malloc (s.st_size+1);
read_size = fread (data, 1, s.st_size, data_file); read_size = fread (data, 1, s.st_size, data_file);
data [read_size] = 0; data [read_size] = 0;
fclose (data_file); fclose (data_file);