fix double semicolon typo

This commit is contained in:
Thomas Hindoe Paaboel Andersen 2015-06-02 23:20:15 +02:00
parent b30e7a269d
commit 7e518afab9
3 changed files with 3 additions and 3 deletions

View File

@ -196,7 +196,7 @@ int sysview_session_new(sysview_session **out, sysview_seat *seat, const char *n
if (r < 0) if (r < 0)
return r; return r;
session->custom = false;; session->custom = false;
} else { } else {
/* /*
* No session name was given. We assume this is an unmanaged * No session name was given. We assume this is an unmanaged

View File

@ -1270,7 +1270,7 @@ int device_read_db_aux(sd_device *device, bool force) {
} }
/* devices with a database entry are initialized */ /* devices with a database entry are initialized */
device->is_initialized = true;; device->is_initialized = true;
for (i = 0; i < db_len; i++) { for (i = 0; i < db_len; i++) {
switch (state) { switch (state) {

View File

@ -317,7 +317,7 @@ _public_ int sd_hwdb_new(sd_hwdb **ret) {
if (memcmp(hwdb->map, sig, sizeof(hwdb->head->signature)) != 0 || if (memcmp(hwdb->map, sig, sizeof(hwdb->head->signature)) != 0 ||
(size_t)hwdb->st.st_size != le64toh(hwdb->head->file_size)) { (size_t)hwdb->st.st_size != le64toh(hwdb->head->file_size)) {
log_debug("error recognizing the format of %s", hwdb_bin_path); log_debug("error recognizing the format of %s", hwdb_bin_path);
return -EINVAL;; return -EINVAL;
} }
log_debug("=== trie on-disk ==="); log_debug("=== trie on-disk ===");