diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2006-03-13 21:33:17 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2006-03-13 21:33:17 +0000 | 
| commit | b8f1ba37289709f04519099e3f17f82a1c41f349 (patch) | |
| tree | b1bf316bf73d32d012e13aa2779e3cc1bf85ceec | |
| parent | 769b4334577846f55cc9b3d35aefcd5a50491503 (diff) | |
Don't forget the newlines
| -rw-r--r-- | hcid/passkey-agent.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/hcid/passkey-agent.c b/hcid/passkey-agent.c index db4d6874..bc749da5 100644 --- a/hcid/passkey-agent.c +++ b/hcid/passkey-agent.c @@ -195,7 +195,7 @@ static int register_agent(DBusConnection *conn, const char *agent_path,  	if (!reply) {  		fprintf(stderr, "Can't register passkey agent\n");  		if (dbus_error_is_set(&err)) { -			fprintf(stderr, "%s", err.message); +			fprintf(stderr, "%s\n", err.message);  			dbus_error_free(&err);  		}  		return -1; @@ -246,7 +246,7 @@ static int unregister_agent(DBusConnection *conn, const char *agent_path,  	if (!reply) {  		fprintf(stderr, "Can't unregister passkey agent\n");  		if (dbus_error_is_set(&err)) { -			fprintf(stderr, "%s", err.message); +			fprintf(stderr, "%s\n", err.message);  			dbus_error_free(&err);  		}  		return -1;  | 
