diff src/util.c @ 1976:24aed1c31342

[gaim-migrate @ 1986] Just removed some annoying C++ style comments. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 08 Jun 2001 23:17:17 +0000
parents 3397860c22e9
children 008a4cc4a82c
line wrap: on
line diff
--- a/src/util.c	Fri Jun 08 19:33:05 2001 +0000
+++ b/src/util.c	Fri Jun 08 23:17:17 2001 +0000
@@ -820,20 +820,20 @@
 			if (*(c + 1)) {
 				switch (*(c + 1)) {
 				case 'n':
-					// append name
+					/* append name */
 					strcpy(cpy + cnt, name);
 					cnt += strlen(name);
 					c++;
 					break;
 				case 'd':
-					// append date
+					/* append date */
 					strftime(tmp, 20, "%D", tme);
 					strcpy(cpy + cnt, tmp);
 					cnt += strlen(tmp);
 					c++;
 					break;
 				case 't':
-					// append time
+					/* append time */
 					strftime(tmp, 20, "%r", tme);
 					strcpy(cpy + cnt, tmp);
 					cnt += strlen(tmp);