Fixed error message in notification example app

Fixed a small typo in which the newline was printed one character early
in an error message.
pull/135/head
Johannes Bauer 2019-09-28 14:48:57 +02:00 committed by Olivier Martin
parent 55d875438b
commit 1f6c89f0bf
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ int main(int argc, char *argv[]) {
ret = gattlib_notification_start(connection, &g_battery_level_uuid);
if (ret) {
fprintf(stderr, "Fail to start notification\n.");
fprintf(stderr, "Fail to start notification.\n");
goto DISCONNECT;
}