aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-10-30 03:53:52 +0100
committerTeddy Wing2018-10-30 03:53:52 +0100
commitd5fdc640ef95577da72743a431f58a6c93bb31d0 (patch)
tree139c9c2e057a5eb4a38149ec886b69d937e400d8
parent330d3a0a70b2587e8e05dcddcc7c7991f12c825b (diff)
downloaddome-key-map-d5fdc640ef95577da72743a431f58a6c93bb31d0.tar.bz2
dome_key_state_load_map_group(): Fix incorrect line wrapping
Otherwise the literal spaces are included in the string.
-rw-r--r--src/ffi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ffi.rs b/src/ffi.rs
index 4d71334..9e9111c 100644
--- a/src/ffi.rs
+++ b/src/ffi.rs
@@ -72,7 +72,7 @@ pub extern "C" fn dome_key_state_load_map_group(ptr: *mut State) {
match xdg_dirs.get_config_home().to_str() {
Some(config_home) => {
error!(
- "No mapping file found at '{}{}'.
+ "No mapping file found at '{}{}'. \
Using default mappings.",
config_home,
"mappings.dkmap"