diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-04-27 08:39:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-04-27 10:48:12 +0200 |
commit | d507c8b3e2939f66a395f163b5f21c29ffe59d02 (patch) | |
tree | 26023ed66bc3c4d24ee6218449b3f0364c03192a /sal | |
parent | c0cbd13c945c5f47057b413efc88b2e3bb72d025 (diff) |
loplugin:nullptr (clang-cl)
Change-Id: I3c0ee11c42a2a4a22adf894341b04a229d579226
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114689
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/file_dirvol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/w32/file_dirvol.cxx b/sal/osl/w32/file_dirvol.cxx index d150b36277f4..d0d5616678fb 100644 --- a/sal/osl/w32/file_dirvol.cxx +++ b/sal/osl/w32/file_dirvol.cxx @@ -247,7 +247,7 @@ struct Directory_Impl { UINT uType = 0; union { - HANDLE hDirectory = 0; + HANDLE hDirectory = nullptr; HANDLE hEnumDrives; }; OUString m_sDirectoryPath; |