Eric Pouech : winedbg: Rename print_longlong into print_sdecimal (to mimic print_hex).

Alexandre Julliard julliard at winehq.org
Wed Dec 8 15:46:30 CST 2021


Module: wine
Branch: master
Commit: 0888943e728effb9039d1dd20f635c273c3278de
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=0888943e728effb9039d1dd20f635c273c3278de

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Wed Dec  8 14:43:50 2021 +0100

winedbg: Rename print_longlong into print_sdecimal (to mimic print_hex).

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/winedbg/memory.c | 19 +++++--------------
 1 file changed, 5 insertions(+), 14 deletions(-)

diff --git a/programs/winedbg/memory.c b/programs/winedbg/memory.c
index d919922c058..13bbc80c2fe 100644
--- a/programs/winedbg/memory.c
+++ b/programs/winedbg/memory.c
@@ -346,18 +346,9 @@ char* memory_offset_to_string(char *str, DWORD64 offset, unsigned mode)
     return str;
 }
 
-static void dbg_print_longlong(LONGLONG sv, BOOL is_signed)
+static void dbg_print_sdecimal(dbg_lgint_t sv)
 {
-    char      tmp[24], *ptr = tmp + sizeof(tmp) - 1;
-    ULONGLONG uv, div;
-    *ptr = '\0';
-    if (is_signed && sv < 0)    uv = -sv;
-    else                        { uv = sv; is_signed = FALSE; }
-    for (div = 10; uv; div *= 10, uv /= 10)
-        *--ptr = '0' + (uv % 10);
-    if (ptr == tmp + sizeof(tmp) - 1) *--ptr = '0';
-    if (is_signed) *--ptr = '-';
-    dbg_printf("%s", ptr);
+    dbg_printf("%I64d", sv);
 }
 
 static void dbg_print_hex(DWORD size, dbg_lgint_t sv)
@@ -512,7 +503,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
                     fcp->Start += 256;
                 }
             }
-            if (!ok) dbg_print_longlong(val_int, TRUE);
+            if (!ok) dbg_print_sdecimal(val_int);
         }
         break;
     default:
@@ -547,7 +538,7 @@ void print_basic(const struct dbg_lvalue* lvalue, char format)
             return;
 
         case 'd':
-            dbg_print_longlong(res, TRUE);
+            dbg_print_sdecimal(res);
             return;
 
         case 'c':
@@ -570,7 +561,7 @@ void print_basic(const struct dbg_lvalue* lvalue, char format)
     }
     if (lvalue->type.id == dbg_itype_segptr)
     {
-        dbg_print_longlong(types_extract_as_lgint(lvalue, NULL, NULL), TRUE);
+        dbg_print_sdecimal(types_extract_as_lgint(lvalue, NULL, NULL));
     }
     else print_typed_basic(lvalue);
 }




More information about the wine-cvs mailing list