~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to win32/conn_uds.cc

  • Committer: Monty Taylor
  • Date: 2011-04-03 19:25:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2267.
  • Revision ID: mordred@inaugust.com-20110403192554-f2jw9102o4s5a4ky
A couple of small changes to fix the msbuild build

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 * Common definitions
46
46
 */
47
47
 
48
 
const char *drizzle_con_uds(const drizzle_con_st *)
 
48
const char *drizzle_con_uds(const drizzle_con_st *con)
49
49
{
50
 
  return (const char *)NULL;
 
50
  (void)con;
 
51
  return NULL;
51
52
}
52
53
 
53
 
void drizzle_con_set_uds(drizzle_con_st *, const char *)
 
54
void drizzle_con_set_uds(drizzle_con_st *con, const char *uds)
54
55
{
 
56
  (void)con;
 
57
  (void)uds;
55
58
}
56
59
 
57
60
/*