Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-35599

Which llstr(value, buff) can we replace with "%lld" ?

    XMLWordPrintable

Details

    Description

      llstr() is a workaround for printing longlongs from the times when %llu was not supported
      serg, https://github.com/MariaDB/server/pull/3360#discussion_r1833301827

      should be replaced, for example,

        char buff[32];
        my_snprintf("The value is: %s", llstr(val, buff));
      

      with

        my_snprintf("The value is: %lld", val);
      

      Attachments

        Issue Links

          Activity

            People

              ParadoxV5 Jimmy Hú
              ParadoxV5 Jimmy Hú
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.