diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-06-02 23:20:15 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-06-02 23:29:20 +0200 |
commit | 7e518afab9fb55b8052f68888210927259275560 (patch) | |
tree | 41e550f933f567277ef8f50c99dc9f0e39f35220 /src/libsystemd/sd-hwdb | |
parent | b30e7a269d1ee289d29282e93f41559ace9d4775 (diff) |
fix double semicolon typo
Diffstat (limited to 'src/libsystemd/sd-hwdb')
-rw-r--r-- | src/libsystemd/sd-hwdb/sd-hwdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd/sd-hwdb/sd-hwdb.c b/src/libsystemd/sd-hwdb/sd-hwdb.c index 3bbf02896b..2a0e00f7d2 100644 --- a/src/libsystemd/sd-hwdb/sd-hwdb.c +++ b/src/libsystemd/sd-hwdb/sd-hwdb.c @@ -317,7 +317,7 @@ _public_ int sd_hwdb_new(sd_hwdb **ret) { if (memcmp(hwdb->map, sig, sizeof(hwdb->head->signature)) != 0 || (size_t)hwdb->st.st_size != le64toh(hwdb->head->file_size)) { log_debug("error recognizing the format of %s", hwdb_bin_path); - return -EINVAL;; + return -EINVAL; } log_debug("=== trie on-disk ==="); |