diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-09-25 05:06:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:14:42 -0500 |
commit | 147fc86a947623e20bc85e797cb48371a54a0b77 (patch) | |
tree | cb2e8d0fbb14c2cbe5289d60983020f02b1ac596 /source3/libsmb | |
parent | ba68916c9a243f032c78e6c229b236901d6f8a1e (diff) | |
download | samba-147fc86a947623e20bc85e797cb48371a54a0b77.tar.gz samba-147fc86a947623e20bc85e797cb48371a54a0b77.tar.bz2 samba-147fc86a947623e20bc85e797cb48371a54a0b77.zip |
r18891: Fix "double const" warning from host opi
(This used to be commit 47c19811ae2282259f523a0d41a08d84de74cbda)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/nterr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/nterr.c b/source3/libsmb/nterr.c index 2e4b1106af..db522556e4 100644 --- a/source3/libsmb/nterr.c +++ b/source3/libsmb/nterr.c @@ -22,7 +22,7 @@ #include "includes.h" -typedef const struct +typedef struct { const char *nt_errstr; NTSTATUS nt_errcode; |