aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_int64.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-02-09 12:56:58 -0800
committerGerald Combs <gerald@wireshark.org>2018-02-11 17:12:52 +0000
commit5a674d05c900be0007b71d11ff52e7f972359b5d (patch)
tree29adb15dae740163781d01d4b53e81852f31f5cd /epan/wslua/wslua_int64.c
parent04df34909f02013c36bc1e9ab33a52b34f374f80 (diff)
wslua: Convert more comment markup to Asciidoctor.
Convert links, source code blocks, and admonitions. Change-Id: I50c8daa19a115c23f7501b91dbfd904779a609c9 Reviewed-on: https://code.wireshark.org/review/25720 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'epan/wslua/wslua_int64.c')
-rw-r--r--epan/wslua/wslua_int64.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/wslua/wslua_int64.c b/epan/wslua/wslua_int64.c
index c2ddaab856..fe240e9201 100644
--- a/epan/wslua/wslua_int64.c
+++ b/epan/wslua/wslua_int64.c
@@ -46,7 +46,7 @@ either expressed or implied, of the FreeBSD Project.
it is often set to IEEE 754 double precision floating point, one cannot store a 64 bit integer
with full precision.
- For details, see [[https://wiki.wireshark.org/LuaAPI/Int64]].
+ For details, see https://wiki.wireshark.org/LuaAPI/Int64.
*/
#define LUATYPE64_STRING_SIZE 21 /* string to hold 18446744073709551615 */
@@ -61,7 +61,7 @@ WSLUA_CLASS_DEFINE_BASE(Int64,NOP,0);
/*
`Int64` represents a 64 bit signed integer.
- For details, see [[https://wiki.wireshark.org/LuaAPI/Int64]].
+ For details, see https://wiki.wireshark.org/LuaAPI/Int64.
*/
/* A checkInt64 but that also auto-converts numbers, strings, and UINT64 to a gint64 */
@@ -614,7 +614,7 @@ LUALIB_API int Int64_register(lua_State* L) {
WSLUA_CLASS_DEFINE_BASE(UInt64,NOP,0);
/* `UInt64` represents a 64 bit unsigned integer, similar to `Int64`.
- For details, see: [[https://wiki.wireshark.org/LuaAPI/Int64]].
+ For details, see: https://wiki.wireshark.org/LuaAPI/Int64.
*/
/* A checkUInt64 but that also auto-converts numbers, strings, and `Int64` to a guint64. */