Re: [PATCH] uapi: fix linux/btrfs.h userspace compilation error

2017-02-15 Thread Jeff Mahoney
On 2/15/17 3:02 PM, Dmitry V. Levin wrote: > Stop using NULL to fix the following linux/btrfs.h userspace compilation > error: > > /usr/include/linux/btrfs.h: In function 'btrfs_err_str': > /usr/include/linux/btrfs.h:740:11: error: 'NULL' undeclared (first use in > this function) > return

Re: [PATCH] uapi: fix linux/btrfs.h userspace compilation error

2017-02-15 Thread Jeff Mahoney
On 2/15/17 3:02 PM, Dmitry V. Levin wrote: > Stop using NULL to fix the following linux/btrfs.h userspace compilation > error: > > /usr/include/linux/btrfs.h: In function 'btrfs_err_str': > /usr/include/linux/btrfs.h:740:11: error: 'NULL' undeclared (first use in > this function) > return

Re: [PATCH] uapi: fix linux/btrfs.h userspace compilation error

2017-02-15 Thread Joe Perches
On Wed, 2017-02-15 at 23:02 +0300, Dmitry V. Levin wrote: > Stop using NULL to fix the following linux/btrfs.h userspace compilation > error: > > /usr/include/linux/btrfs.h: In function 'btrfs_err_str': > /usr/include/linux/btrfs.h:740:11: error: 'NULL' undeclared (first use in > this function)

Re: [PATCH] uapi: fix linux/btrfs.h userspace compilation error

2017-02-15 Thread Joe Perches
On Wed, 2017-02-15 at 23:02 +0300, Dmitry V. Levin wrote: > Stop using NULL to fix the following linux/btrfs.h userspace compilation > error: > > /usr/include/linux/btrfs.h: In function 'btrfs_err_str': > /usr/include/linux/btrfs.h:740:11: error: 'NULL' undeclared (first use in > this function)

[PATCH] uapi: fix linux/btrfs.h userspace compilation error

2017-02-15 Thread Dmitry V. Levin
Stop using NULL to fix the following linux/btrfs.h userspace compilation error: /usr/include/linux/btrfs.h: In function 'btrfs_err_str': /usr/include/linux/btrfs.h:740:11: error: 'NULL' undeclared (first use in this function) return NULL; Signed-off-by: Dmitry V. Levin

[PATCH] uapi: fix linux/btrfs.h userspace compilation error

2017-02-15 Thread Dmitry V. Levin
Stop using NULL to fix the following linux/btrfs.h userspace compilation error: /usr/include/linux/btrfs.h: In function 'btrfs_err_str': /usr/include/linux/btrfs.h:740:11: error: 'NULL' undeclared (first use in this function) return NULL; Signed-off-by: Dmitry V. Levin ---