Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1226057 > unrolled thread

[PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed unnecessary space

Started bySakshi Vaid <sakshivaid95@gmail.com>
First post2015-09-16 15:00 +0200
Last post2015-09-17 06:30 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed unnecessary space Sakshi Vaid <sakshivaid95@gmail.com> - 2015-09-16 15:00 +0200
    Re: [PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed  unnecessary space Greg KH <gregkh@linuxfoundation.org> - 2015-09-17 06:30 +0200

#1226057 — [PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed unnecessary space

FromSakshi Vaid <sakshivaid95@gmail.com>
Date2015-09-16 15:00 +0200
Subject[PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed unnecessary space
Message-ID<q9ktA-4U2-3@gated-at.bofh.it>
Removed the unnecessary space in the declaration of a pointer.
The following error was given.
ERROR: "foo *		bar" should be "foo *bar"

Signed-off-by: Sakshi Vaid <sakshivaid95@gmail.com>
---
 drivers/staging/lustre/lustre/mgc/mgc_request.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/lustre/lustre/mgc/mgc_request.c b/drivers/staging/lustre/lustre/mgc/mgc_request.c
index 60d2b0f..8d3dbdc 100644
--- a/drivers/staging/lustre/lustre/mgc/mgc_request.c
+++ b/drivers/staging/lustre/lustre/mgc/mgc_request.c
@@ -160,7 +160,7 @@ struct config_llog_data *config_log_find(char *logname,
 {
 	struct config_llog_data *cld;
 	struct config_llog_data *found = NULL;
-	void *		   instance;
+	void *instance;
 
 	LASSERT(logname != NULL);
 
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1226652 — Re: [PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed unnecessary space

FromGreg KH <gregkh@linuxfoundation.org>
Date2015-09-17 06:30 +0200
SubjectRe: [PATCH] Staging: lustre: lustre: mgc: mgc_request.c: Removed unnecessary space
Message-ID<q9yZz-Oq-1@gated-at.bofh.it>
In reply to#1226057
On Wed, Sep 16, 2015 at 06:27:12PM +0530, Sakshi Vaid wrote:
> Removed the unnecessary space in the declaration of a pointer.
> The following error was given.
> ERROR: "foo *		bar" should be "foo *bar"
> 
> Signed-off-by: Sakshi Vaid <sakshivaid95@gmail.com>
> ---
>  drivers/staging/lustre/lustre/mgc/mgc_request.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/lustre/lustre/mgc/mgc_request.c b/drivers/staging/lustre/lustre/mgc/mgc_request.c
> index 60d2b0f..8d3dbdc 100644
> --- a/drivers/staging/lustre/lustre/mgc/mgc_request.c
> +++ b/drivers/staging/lustre/lustre/mgc/mgc_request.c
> @@ -160,7 +160,7 @@ struct config_llog_data *config_log_find(char *logname,
>  {
>  	struct config_llog_data *cld;
>  	struct config_llog_data *found = NULL;
> -	void *		   instance;
> +	void *instance;
>  
>  	LASSERT(logname != NULL);
>  

This also doesn't apply :(
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web