diff options
author | Sylvain Plantefève <melkor73@gmail.com> | 2014-12-28 12:52:14 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2014-12-28 13:04:46 +0100 |
commit | 1517ab5d18f2f057c3f0d8c9b8444595eac71df5 (patch) | |
tree | 01ca5aa26a397cea2ab529f457f4c9d88b34220c | |
parent | 1ddb263d21099ae42195c2bc382bdf72a7f24f82 (diff) |
libsystemd: Fix minor typo in comment
-rw-r--r-- | src/libsystemd/sd-bus/bus-error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd/sd-bus/bus-error.c b/src/libsystemd/sd-bus/bus-error.c index 2955d9dd2b..09800ec7d7 100644 --- a/src/libsystemd/sd-bus/bus-error.c +++ b/src/libsystemd/sd-bus/bus-error.c @@ -265,7 +265,7 @@ int bus_error_setfv(sd_bus_error *e, const char *name, const char *format, va_li return -ENOMEM; } - /* Of we hit OOM on formatting the pretty message, we ignore + /* If we hit OOM on formatting the pretty message, we ignore * this, since we at least managed to write the error name */ if (format) (void) vasprintf((char**) &e->message, format, ap); |