~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cloud_ms.h

  • Committer: Monty Taylor
  • Date: 2010-10-30 01:19:00 UTC
  • mto: (1892.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1893.
  • Revision ID: mordred@inaugust.com-20101030011900-2tdt8w9vt7a6pbk0
Fixed things to make things compile with clang

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
        }
68
68
 
69
69
 
70
 
        static MSCloudInfo *getCloudInfo(uint32_t cloudRefId)
 
70
        static MSCloudInfo *getCloudInfo(uint32_t in_cloudRefId)
71
71
        {
72
72
                MSCloudInfo *info;
73
73
                enter_();
74
74
                
75
75
                lock_(gCloudInfo);
76
76
                
77
 
                info = (MSCloudInfo *) gCloudInfo->get(cloudRefId);
 
77
                info = (MSCloudInfo *) gCloudInfo->get(in_cloudRefId);
78
78
                if (!info) {
79
79
                        char msg[80];
80
 
                        snprintf(msg, 80, "Cloud info with reference ID %"PRIu32" not found", cloudRefId);
 
80
                        snprintf(msg, 80, "Cloud info with reference ID %"PRIu32" not found", in_cloudRefId);
81
81
                        CSException::throwException(CS_CONTEXT, CS_ERR_GENERIC_ERROR, msg);
82
82
                }
83
83
                info->retain();