]> git.proxmox.com Git - mirror_qemu.git/blobdiff - cutils.c
find -type f | xargs sed -i 's/[\t ]$//g' # on most files
[mirror_qemu.git] / cutils.c
index 352c47e2118f4e3f53bf59914ba2a92ca8193132..074b5acd47139a5d9c54e4327c26f2f0f55c1614 100644 (file)
--- a/cutils.c
+++ b/cutils.c
@@ -1,6 +1,6 @@
 /*
  * Simple C functions to supplement the C library
- * 
+ *
  * Copyright (c) 2006 Fabrice Bellard
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -45,7 +45,7 @@ char *pstrcat(char *buf, int buf_size, const char *s)
 {
     int len;
     len = strlen(buf);
-    if (len < buf_size) 
+    if (len < buf_size)
         pstrcpy(buf + len, buf_size - len, s);
     return buf;
 }