mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-22 18:41:37 +00:00
transfused: copyedit a couple error messages
Signed-off-by: David Sheets <dsheets@docker.com>
This commit is contained in:
parent
821b329f7b
commit
b25b891d3b
@ -467,7 +467,7 @@ void start_reader(connection_t * connection, int fuse) {
|
|||||||
if ((errno = pthread_create(&child, &detached,
|
if ((errno = pthread_create(&child, &detached,
|
||||||
copy_clean_into_fuse_thread, copy_state)))
|
copy_clean_into_fuse_thread, copy_state)))
|
||||||
die(1, connection->params, "",
|
die(1, connection->params, "",
|
||||||
"couldn't create read copy thread for mount %s: ",
|
"Couldn't create read copy thread for mount %s: ",
|
||||||
connection->mount_point);
|
connection->mount_point);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -475,7 +475,7 @@ void start_writer(connection_t * connection, int fuse) {
|
|||||||
pthread_t child;
|
pthread_t child;
|
||||||
copy_thread_state * copy_state;
|
copy_thread_state * copy_state;
|
||||||
|
|
||||||
copy_state = (copy_thread_state *) must_malloc("do_write copy_state",
|
copy_state = (copy_thread_state *) must_malloc("start_writer copy_state",
|
||||||
sizeof(copy_thread_state));
|
sizeof(copy_thread_state));
|
||||||
copy_state->connection = connection;
|
copy_state->connection = connection;
|
||||||
copy_state->from = fuse;
|
copy_state->from = fuse;
|
||||||
|
Loading…
Reference in New Issue
Block a user