From 632b456bd3363036e9f36384923e8084ed116d2b Mon Sep 17 00:00:00 2001 From: christos Date: Mon, 15 Jan 2018 22:14:24 +0000 Subject: [PATCH] fix indent --- usr.bin/xlint/lint1/err.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/usr.bin/xlint/lint1/err.c b/usr.bin/xlint/lint1/err.c index 7742410dab9a..9a7fc5d11c1a 100644 --- a/usr.bin/xlint/lint1/err.c +++ b/usr.bin/xlint/lint1/err.c @@ -1,4 +1,4 @@ -/* $NetBSD: err.c,v 1.51 2016/08/19 10:19:45 christos Exp $ */ +/* $NetBSD: err.c,v 1.52 2018/01/15 22:14:24 christos Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -37,7 +37,7 @@ #include #if defined(__RCSID) && !defined(lint) -__RCSID("$NetBSD: err.c,v 1.51 2016/08/19 10:19:45 christos Exp $"); +__RCSID("$NetBSD: err.c,v 1.52 2018/01/15 22:14:24 christos Exp $"); #endif #include @@ -163,11 +163,11 @@ const char *msgs[] = { "undefined struct/union member: %s", /* 101 */ "illegal member use: %s", /* 102 */ "left operand of '.' must be struct/union object", /* 103 */ - "left operand of '->' must be pointer to struct/union and is %s", /* 104 */ + "left operand of '->' must be pointer to struct/union not %s",/* 104 */ "non-unique member requires struct/union %s", /* 105 */ "left operand of '->' must be pointer", /* 106 */ - "operands of '%s' have incompatible types (%s != %s)", /* 107 */ - "operand of '%s' has incompatible type (%s != %s)", /* 108 */ + "operands of '%s' have incompatible types (%s != %s)", /* 107 */ + "operand of '%s' has incompatible type (%s != %s)", /* 108 */ "void type illegal in expression", /* 109 */ "pointer to function is not allowed here", /* 110 */ "unacceptable operand of '%s'", /* 111 */