~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handlerton.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
 
93
93
/**
94
94
  Return the storage engine handlerton for the supplied name
95
 
  
 
95
 
96
96
  @param session         current thread
97
97
  @param name        name of storage engine
98
 
  
 
98
 
99
99
  @return
100
100
    pointer to storage engine plugin handle
101
101
*/
116
116
    handlerton *hton= plugin_data(plugin, handlerton *);
117
117
    if (!(hton->flags.test(HTON_BIT_NOT_USER_SELECTABLE)))
118
118
      return plugin;
119
 
      
 
119
 
120
120
    /*
121
121
      unlocking plugin immediately after locking is relatively low cost.
122
122
    */