diff options
author | Shivam Kumar Singh <shivamhere247@gmail.com> | 2020-01-15 14:44:44 +0530 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-02-04 18:27:25 +0100 |
commit | 03685b1ab86a9b8d78ad2a4fd460c2aaa50f03ab (patch) | |
tree | 88ca2b76e2056517b181a57e735f3e2f4a4ad316 /embeddedobj | |
parent | a68157c88add7a815678155f4d7a743b010d92f5 (diff) |
tdf#96505 Get rid of cargo cult "long" integer literals .
In some places the integers end with L which denotes that the number is in long long format.
This representation was not required .
Change-Id: Ia8ae328ee943780ccbfb7ce15013f3ac0365a3db
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86842
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'embeddedobj')
-rw-r--r-- | embeddedobj/test/Container1/nativelib/nativeview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embeddedobj/test/Container1/nativelib/nativeview.c b/embeddedobj/test/Container1/nativelib/nativeview.c index 29dd49437e0b..9d0f478bd410 100644 --- a/embeddedobj/test/Container1/nativelib/nativeview.c +++ b/embeddedobj/test/Container1/nativelib/nativeview.c @@ -34,7 +34,7 @@ static LRESULT APIENTRY NativeViewWndProc( HWND , UINT , WPARAM , LPARAM ); #include "jawt_md.h" #include "NativeView.h" -#define MY_ASSERT(X,S) if (!X) { fprintf(stderr,"%s\n",S); return 0L;} +#define MY_ASSERT(X,S) if (!X) { fprintf(stderr,"%s\n",S); return 0;} #define SYSTEM_WIN32 1 #define SYSTEM_WIN16 2 |