microsoftfeedback / WinDbg-Feedback

Public issue and feedback tracking for WinDbg Preview.
Creative Commons Attribution 4.0 International
47 stars 12 forks source link

Stack Frame view displays SourceLine in hex #123

Open intech-paul opened 1 year ago

intech-paul commented 1 year ago

When viewing details of a crash in a stack frame, the SourceLine is shown in hex. Do we have a decimal option to display this ?

lzybkr commented 12 months ago

Where are you seeing this? It looks like the code for k uses the %d printf format string, so that should always be in decimal.

I do note that the data model will report the line number in hex, e.g. if you type dx -r1 @$curstack.Frames[0].Attributes.SourceInformation.

intech-paul commented 12 months ago

Hello

It is here:

@.***

Regards Paul

From: Jason Shirk @.> Sent: Tuesday, 26 September 2023 6:06 a.m. To: microsoftfeedback/WinDbg-Feedback @.> Cc: Paul Marriot @.>; Author @.> Subject: Re: [microsoftfeedback/WinDbg-Feedback] Stack Frame view displays SourceLine in hex (Issue #123)

Where are you seeing this? It looks like the code for k uses the %d printf format string, so that should always be in decimal.

I do note that the data model will report the line number in hex, e.g. if you type dx -r1 @$curstack.Frames[0].Attributes.SourceInformation.

— Reply to this email directly, view it on GitHubhttps://github.com/microsoftfeedback/WinDbg-Feedback/issues/123#issuecomment-1734145684, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ANQTQPGA6SXN6D6BOSRI5F3X4G2V3ANCNFSM6AAAAAA435RUFY. You are receiving this because you authored the thread.Message ID: @.**@.>>

intech-paul commented 12 months ago

image