From fdf6221f33f40e3cc702ddb5f5d2557ffedd03bf Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sun, 21 Dec 2014 18:47:30 +0000 Subject: [PATCH] fish: c-pointer: Print the pointer in hexadecimal. $ guestfish > c-pointer 0x1fb4f80 This updates commit d8c43d556b45f4c9676fdbfce0e9fe07b709635a. --- generator/actions.ml | 1 + 1 file changed, 1 insertion(+) diff --git a/generator/actions.ml b/generator/actions.ml index 429a2d815..a6a6dade9 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -3299,6 +3299,7 @@ This is the same as the C system call." }; { defaults with name = "c_pointer"; style = RInt64 "ptr", [], []; + fish_output = Some FishOutputHexadecimal; tests = [ InitNone, Always, TestRun ( [["c_pointer"]]), []