Page MenuHomeFreeBSD

D30235.id89093.diff
No OneTemporary

D30235.id89093.diff

Index: sys/tools/makesyscalls.lua
===================================================================
--- sys/tools/makesyscalls.lua
+++ sys/tools/makesyscalls.lua
@@ -648,7 +648,7 @@
]], funcname, sysnum))
if #funcargs > 0 then
- write_line("systracetmp", "\t\tswitch(ndx) {\n")
+ write_line("systracetmp", "\t\tswitch (ndx) {\n")
write_line("systrace", string.format(
"\t\tstruct %s *p = params;\n", argalias))
@@ -671,7 +671,7 @@
if isptrtype(argtype) then
write_line("systrace", string.format(
- "\t\tuarg[%d] = (%s) p->%s; /* %s */\n",
+ "\t\tuarg[%d] = (%s)p->%s; /* %s */\n",
idx - 1, config["ptr_intptr_t_cast"],
argname, argtype))
elseif argtype == "union l_semun" then
@@ -1285,7 +1285,7 @@
static void
systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
{
- int64_t *iarg = (int64_t *) uarg;
+ int64_t *iarg = (int64_t *)uarg;
switch (sysnum) {
]], generated_tag, config['os_id_keyword']))
@@ -1316,7 +1316,7 @@
write_line("sysinc", string.format([[
#ifdef %s
-#define %s(n, name) .sy_narg = n, .sy_call = (sy_call_t *)__CONCAT(%s,name)
+#define %s(n, name) .sy_narg = n, .sy_call = (sy_call_t *)__CONCAT(%s, name)
#else
#define %s(n, name) .sy_narg = 0, .sy_call = (sy_call_t *)nosys
#endif

File Metadata

Mime Type
text/plain
Expires
Thu, Aug 20, 8:47 PM (8 h, 47 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
37008560
Default Alt Text
D30235.id89093.diff (1 KB)

Event Timeline