diff options
author | udaycoder <udayanbaidya@gmail.com> | 2017-03-14 16:26:25 +0530 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-03-21 14:12:00 +0000 |
commit | 68bd686b2ca62602fd4b580b905baaa0a04d1f3c (patch) | |
tree | 5f48396035f1ace80f2fdb2c0effcbfd9da57601 /svl/source/svdde | |
parent | fc6d65e75e742a483b14d1a6c1c9b65d48683aad (diff) |
tdf#96505 - Get rid of cargo cult long integer literals
Change-Id: I56fbc7cd9c879b18ac65c5e6adf80f01c6b95b84
Reviewed-on: https://gerrit.libreoffice.org/35176
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'svl/source/svdde')
-rw-r--r-- | svl/source/svdde/ddecli.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/svdde/ddecli.cxx b/svl/source/svdde/ddecli.cxx index d26191859feb..3f76d96fc779 100644 --- a/svl/source/svdde/ddecli.cxx +++ b/svl/source/svdde/ddecli.cxx @@ -283,7 +283,7 @@ void DdeTransaction::Execute() if ( nType != XTYP_EXECUTE && nType != XTYP_POKE ) { pData = nullptr; - nData = 0L; + nData = 0; } if ( nTime ) { |