List:Commits« Previous MessageNext Message »
From:msvensson Date:October 24 2006 11:34am
Subject:bk commit into 4.1 tree (msvensson:1.2599)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2006-10-24 13:34:10+02:00, msvensson@neptunus.(none) +1 -0
  Enable the ATTRIBUTE_FORMAT macros to check format of variable arg parameters

  client/mysqltest.c@stripped, 2006-10-24 13:34:06+02:00, msvensson@neptunus.(none) +4 -4
    Enable the ATTRIBUTE_FORMAT macros to check format of variable arg parameters

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-4.1-maint

--- 1.218/client/mysqltest.c	2006-10-24 13:34:19 +02:00
+++ 1.219/client/mysqltest.c	2006-10-24 13:34:19 +02:00
@@ -398,13 +398,13 @@
 DYNAMIC_STRING ds_res, ds_progress, ds_warning_messages;
 
 void die(const char *fmt, ...)
-  /* ATTRIBUTE_FORMAT(printf, 1, 2) */;
+  ATTRIBUTE_FORMAT(printf, 1, 2);
 void abort_not_supported_test(const char *fmt, ...)
-  /* ATTRIBUTE_FORMAT(printf, 1, 2) */;
+  ATTRIBUTE_FORMAT(printf, 1, 2);
 void verbose_msg(const char *fmt, ...)
-  /* ATTRIBUTE_FORMAT(printf, 1, 2) */;
+  ATTRIBUTE_FORMAT(printf, 1, 2);
 void warning_msg(const char *fmt, ...)
-  /* ATTRIBUTE_FORMAT(printf, 1, 2) */;
+  ATTRIBUTE_FORMAT(printf, 1, 2);
 
 VAR* var_from_env(const char *, const char *);
 VAR* var_init(VAR* v, const char *name, int name_len, const char *val,
Thread
bk commit into 4.1 tree (msvensson:1.2599)msvensson24 Oct