diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-22 10:22:30 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2024-06-22 10:22:30 +0000 |
commit | c46356d5de9de2a9dd3ab1bb7442cfa07c60d2ef (patch) | |
tree | a1ec05d1a2991363c71d48ea0496a7a019ba8a38 /sys/dev/videomode | |
parent | 3e639c090f95652588440c93b14ac78374a526f7 (diff) |
remove space between function names and argument list
Diffstat (limited to 'sys/dev/videomode')
-rw-r--r-- | sys/dev/videomode/vesagtf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/videomode/vesagtf.c b/sys/dev/videomode/vesagtf.c index 5c8a08f839c..4d498fc99f4 100644 --- a/sys/dev/videomode/vesagtf.c +++ b/sys/dev/videomode/vesagtf.c @@ -657,7 +657,7 @@ vesagtf_mode(unsigned x, unsigned y, unsigned refresh, struct videomode *vmp) #ifndef _KERNEL void -print_xf86_mode (struct videomode *vmp) +print_xf86_mode(struct videomode *vmp) { float vf, hf; @@ -678,7 +678,7 @@ print_xf86_mode (struct videomode *vmp) } int -main (int argc, char *argv[]) +main(int argc, char *argv[]) { struct videomode m; |